├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe ├── NuGet.targets ├── Package.nuspec └── run.bat ├── Bin ├── Data │ ├── AcroFormSample.odt │ ├── AcroFormSample.pdf │ ├── PdfHeaderTemplate.odt │ ├── PdfHeaderTemplate.pdf │ ├── blogs.sqlite │ ├── cert123.pfx │ ├── places.xml │ ├── questionTemplate.odt │ ├── questionTemplate.pdf │ ├── sample.csv │ ├── sample.xls │ └── sample.xlsx ├── Images │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ └── 05.png ├── Pdf │ └── AccountingBalanceSample.pdf ├── Thumbs │ └── AccountingBalanceColumn.AccountingBalanceColumnPdfReport.png └── fonts │ └── irsans.ttf ├── LICENSE.md ├── Lib ├── AggregateProvider.cs ├── Aggregates │ ├── NamespaceDoc.cs │ └── Numbers │ │ ├── Average.cs │ │ ├── Empty.cs │ │ ├── Maximum.cs │ │ ├── Minimum.cs │ │ ├── NamespaceDoc.cs │ │ ├── StdDev.cs │ │ ├── Sum.cs │ │ └── Variance.cs ├── BasicTemplateProvider.cs ├── Calendar │ ├── CalendarAttributes.cs │ ├── CalendarData.cs │ ├── CalendarNames.cs │ ├── CalendarType.cs │ ├── DayInfo.cs │ ├── DaysInfoToCalendarData.cs │ ├── GradientCellEvent.cs │ ├── MonthCalendar.cs │ └── MonthTableCell.cs ├── ColumnsItemsTemplates │ ├── AnnotationField.cs │ ├── BarcodeField.cs │ ├── ByteArrayImageField.cs │ ├── CheckMarkField.cs │ ├── HyperlinkField.cs │ ├── ImageFilePathField.cs │ ├── InlineField.cs │ ├── MonthCalendarField.cs │ ├── NamespaceDoc.cs │ ├── PdfTemplateField.cs │ ├── ProgressBarField.cs │ ├── SymbolField.cs │ ├── TextBlockField.cs │ ├── WingdingsSymbolField.cs │ └── XHtmlField.cs ├── Core │ ├── Contracts │ │ ├── AdHocColumnsConventions.cs │ │ ├── AdobeZapfDingbats.cs │ │ ├── AggregateFunction.cs │ │ ├── AggregateValuePosition.cs │ │ ├── AnnotationFieldData.cs │ │ ├── AnnotationIcon.cs │ │ ├── AttachmentFile.cs │ │ ├── BasicTemplate.cs │ │ ├── CellAttributes.cs │ │ ├── CellBasicProperties.cs │ │ ├── CellData.cs │ │ ├── CellRowData.cs │ │ ├── CellSharedData.cs │ │ ├── CellType.cs │ │ ├── CertificateFile.cs │ │ ├── ColumnAttributes.cs │ │ ├── CompressionLevel.cs │ │ ├── CompressionSettings.cs │ │ ├── DiagonalWatermark.cs │ │ ├── DocumentFontStyle.cs │ │ ├── DocumentMargins.cs │ │ ├── DocumentMetadata.cs │ │ ├── DocumentPermissions.cs │ │ ├── DocumentPreferences.cs │ │ ├── DocumentSecurity.cs │ │ ├── Encryption.cs │ │ ├── EncryptionType.cs │ │ ├── Events.cs │ │ ├── EventsArguments.cs │ │ ├── FileAttachment.cs │ │ ├── FlushType.cs │ │ ├── FooterBasicProperties.cs │ │ ├── FooterData.cs │ │ ├── GroupType.cs │ │ ├── GroupsPreferences.cs │ │ ├── HeaderBasicProperties.cs │ │ ├── HeaderData.cs │ │ ├── HeadingCell.cs │ │ ├── HorizontalAlignment.cs │ │ ├── HorizontalStackPanelPreferences.cs │ │ ├── IAggregateFunc.cs │ │ ├── IColumnItemsTemplate.cs │ │ ├── IDataExporter.cs │ │ ├── IDataSource.cs │ │ ├── IPageFooter.cs │ │ ├── IPageHeader.cs │ │ ├── IPdfFont.cs │ │ ├── IPdfReportData.cs │ │ ├── ITableTemplate.cs │ │ ├── ImportedPageInfo.cs │ │ ├── InlineFieldData.cs │ │ ├── LastRenderedRowData.cs │ │ ├── MainTablePreferences.cs │ │ ├── MultipleColumnsPerPage.cs │ │ ├── NamespaceDoc.cs │ │ ├── NonFullScreenPageMode.cs │ │ ├── PageOrientation.cs │ │ ├── PagePreferences.cs │ │ ├── PagesDirection.cs │ │ ├── PasswordEncryption.cs │ │ ├── PdfGrid.cs │ │ ├── PdfPageSize.cs │ │ ├── PdfRunDirection.cs │ │ ├── PdfVersion.cs │ │ ├── PdfViewerPreferences.cs │ │ ├── PdfXConformance.cs │ │ ├── PrintScaling.cs │ │ ├── PrintSide.cs │ │ ├── PrintingPreferences.cs │ │ ├── PublicKeyEncryption.cs │ │ ├── RowType.cs │ │ ├── SharedData.cs │ │ ├── Signature.cs │ │ ├── SigningInfo.cs │ │ ├── SummaryCellAttributes.cs │ │ ├── SummaryCellData.cs │ │ ├── SummaryCellSettings.cs │ │ ├── SummaryLocation.cs │ │ ├── TableColumnWidthType.cs │ │ ├── TableType.cs │ │ ├── TsaClient.cs │ │ ├── VerticalTextAlignment.cs │ │ ├── ViewerPageLayout.cs │ │ ├── ViewerPageMode.cs │ │ ├── ViewerPreferences.cs │ │ ├── VisibleSignature.cs │ │ ├── Wingdings.cs │ │ ├── XFooterBasicProperties.cs │ │ └── XHeaderBasicProperties.cs │ ├── Helper │ │ ├── AggregateException.cs │ │ ├── ApplyDataAnnotations.cs │ │ ├── BackgroundImageTemplate.cs │ │ ├── CellDataExt.cs │ │ ├── ColorExtensions.cs │ │ ├── CompileAsIPdfRptData.cs │ │ ├── DiagonalWatermarkManager.cs │ │ ├── DocumentSettings.cs │ │ ├── DumpNestedProperties.cs │ │ ├── ElementsWidth.cs │ │ ├── ExcelHelper.cs │ │ ├── ExporterManager.cs │ │ ├── ExtractPdfFileAttachments.cs │ │ ├── FastReflection.cs │ │ ├── FuncHelper.cs │ │ ├── GradientBackground.cs │ │ ├── Guard.cs │ │ ├── Hash.cs │ │ ├── HeaderFooterManager.cs │ │ ├── HtmlToPdf │ │ │ ├── ImageProvider.cs │ │ │ ├── RtlElementsCollector.cs │ │ │ ├── SimpleElementsCollector.cs │ │ │ ├── TotalPagesNumberXmlWorkerProcessor.cs │ │ │ ├── UnicodeFontProvider.cs │ │ │ ├── XmlWorkerHelper.cs │ │ │ └── XmlWorkerUtils.cs │ │ ├── HumanReadableInteger.cs │ │ ├── MergePdfDocuments.cs │ │ ├── NamespaceDoc.cs │ │ ├── PdfConformance.cs │ │ ├── PdfImageHelper.cs │ │ ├── PdfPageSizeToRectangle.cs │ │ ├── PersianDate.cs │ │ ├── PersianNumber.cs │ │ ├── PropertyDataAnnotations.cs │ │ ├── PropertyHelper.cs │ │ ├── RunDirectionHelper.cs │ │ ├── SoftHttpContext.cs │ │ ├── StreamHelper.cs │ │ ├── TableCellDefinitionsExt.cs │ │ ├── TableHelper.cs │ │ ├── VectorImages.cs │ │ └── srgb.profile │ ├── PdfTable │ │ ├── AdHocPdfColumnDefinitions.cs │ │ ├── GroupsManager.cs │ │ ├── InitTable.cs │ │ ├── MainTableCellsEvent.cs │ │ ├── NamespaceDoc.cs │ │ ├── PageEvents.cs │ │ ├── RenderMainTable.cs │ │ ├── RowsManager.cs │ │ ├── TableCellHelper.cs │ │ └── TablesInColumns.cs │ └── Security │ │ ├── EncryptionWorker.cs │ │ ├── NamespaceDoc.cs │ │ ├── PfxData.cs │ │ ├── PfxReader.cs │ │ └── SignatureWriter.cs ├── DataAnnotations │ ├── AggregateFunctionAttribute.cs │ ├── CalculatedFieldFormulaAttribute.cs │ ├── CellsHorizontalAlignmentAttribute.cs │ ├── ColumnItemsTemplateAttribute.cs │ ├── CustomAggregateFunctionAttribute.cs │ ├── FixedHeightAttribute.cs │ ├── IncludeInGroupingAttribute.cs │ ├── IncludedGroupFieldEqualityComparerAttribute.cs │ ├── IsCalculatedFieldAttribute.cs │ ├── IsVisibleAttribute.cs │ ├── MinimumHeightAttribute.cs │ ├── NamespaceDoc.cs │ ├── OrderAttribute.cs │ ├── PropertyNameAttribute.cs │ └── WidthAttribute.cs ├── DataSources │ ├── AccessDataReaderDataSource.cs │ ├── AnonymousTypeListDataSource.cs │ ├── CrosstabDataSource.cs │ ├── CrosstabExtension.cs │ ├── DataTableDataSource.cs │ ├── ExcelDataReaderDataSource.cs │ ├── GenericDataReaderDataSource.cs │ ├── NamespaceDoc.cs │ ├── OdbcDataReaderDataSource.cs │ ├── SqlDataReaderDataSource.cs │ ├── SqlParametersParser.cs │ ├── StronglyTypedListDataSource.cs │ └── XmlDataSource.cs ├── Export │ ├── ExportToCsv.cs │ ├── ExportToExcel.cs │ ├── ExportToXml.cs │ └── NamespaceDoc.cs ├── FluentInterface │ ├── AggregateFunctionBuilder.cs │ ├── ColumnAttributesBuilder.cs │ ├── ColumnItemsTemplateBuilder.cs │ ├── CustomRowsBuilder.cs │ ├── DataBuilder.cs │ ├── DataTemplate.cs │ ├── DefaultFontsBuilder.cs │ ├── DefaultHeaderProviderBuilder.cs │ ├── DocumentPreferencesBuilder.cs │ ├── EncryptedFileBuilder.cs │ ├── ExportToBuilder.cs │ ├── FileBuilder.cs │ ├── GenericFontProviderBuilder.cs │ ├── HeaderCellsBuilder.cs │ ├── InjectCustomRowsBuilder.cs │ ├── InlineFieldBuilder.cs │ ├── InlineFooterProviderBuilder.cs │ ├── InlineHeaderProviderBuilder.cs │ ├── MainTableAdHocColumnsConventionsBuilder.cs │ ├── MainTableColumnsBuilder.cs │ ├── MainTableDataSourceBuilder.cs │ ├── MainTableEventsBuilder.cs │ ├── MainTablePreferencesBuilder.cs │ ├── MainTableSummarySettingsBuilder.cs │ ├── MainTableTemplateBuilder.cs │ ├── PagesFooterBuilder.cs │ ├── PagesHeaderBuilder.cs │ ├── PdfReport.cs │ ├── SignedFileBuilder.cs │ ├── XHtmlFooterProviderBuilder.cs │ └── XHtmlHeaderProviderBuilder.cs ├── FooterTemplates │ ├── DefaultFooterProvider.cs │ ├── InlineFooterProvider.cs │ ├── NamespaceDoc.cs │ └── XHtmlFooterProvider.cs ├── GenericFontProvider.cs ├── HeaderTemplates │ ├── DefaultHeaderProvider.cs │ ├── InlineHeaderProvider.cs │ ├── NamespaceDoc.cs │ └── XHtmlHeaderProvider.cs ├── Key.snk ├── NamespaceDoc.cs ├── PdfReportDocument.cs ├── PdfRpt.csproj ├── Properties │ └── AssemblyInfo.cs ├── VectorCharts │ ├── BarChartItem.cs │ ├── HorizontalBarChart.cs │ ├── IVectorChart.cs │ ├── PieChart.cs │ ├── PieChartSegment.cs │ └── VerticalBarChart.cs ├── app.config └── packages.config ├── PdfRpt.sln ├── Prerequisites.txt ├── README.md ├── Samples ├── DemosBrowser │ ├── App.xaml │ ├── App.xaml.cs │ ├── Behaviors │ │ ├── AutoScrollListView.cs │ │ └── WindowsFormsHostBehavior.cs │ ├── Controls │ │ ├── BusyIndicator.cs │ │ ├── SourceCodeEditor │ │ │ ├── ExtInline.cs │ │ │ ├── ExtParagraph.cs │ │ │ ├── IParagraphProcessor.cs │ │ │ ├── ParagraphProcessor.cs │ │ │ └── SourceCodeEditor.cs │ │ └── VisualStates.BusyIndicator.cs │ ├── Converters │ │ ├── FileNameConverter.cs │ │ ├── RunDirectionConverter.cs │ │ ├── SamplesNameConverter.cs │ │ ├── ShellThumbnailConverter.cs │ │ └── WaterMarkConverter.cs │ ├── Core │ │ └── SamplesList.cs │ ├── DemosBrowser.csproj │ ├── Images │ │ ├── run.png │ │ └── toolbar_find.png │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Models │ │ ├── BrowserGui.cs │ │ ├── CodeGenGui.cs │ │ ├── TestResultItem.cs │ │ └── TestResultItems.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Themes │ │ ├── ExpressionDark.xaml │ │ └── Generic.xaml │ ├── Toolkit │ │ ├── AcrobatReader │ │ │ ├── AcroPdf.Designer.cs │ │ │ ├── AcroPdf.cs │ │ │ ├── AcroPdf.resx │ │ │ └── ShellThumbnail.cs │ │ ├── Helper │ │ │ ├── FilesInfo.cs │ │ │ ├── Memory.cs │ │ │ ├── MtObservableCollection.cs │ │ │ ├── OpenStackTraceFile.cs │ │ │ ├── Performance.cs │ │ │ └── ResourceHelper.cs │ │ ├── Mvvm │ │ │ ├── DelegateCommand.cs │ │ │ └── ViewModelBase.cs │ │ └── Threading │ │ │ ├── DispatcherHelper.cs │ │ │ └── ParallelTasksQueue.cs │ ├── ViewModels │ │ └── BrowserViewModel.cs │ ├── Views │ │ ├── Browser.xaml │ │ ├── Browser.xaml.cs │ │ ├── DemosList.xaml │ │ ├── DemosList.xaml.cs │ │ ├── IntegrationTests.xaml │ │ ├── IntegrationTests.xaml.cs │ │ ├── Output.xaml │ │ ├── Output.xaml.cs │ │ ├── SourceCode.xaml │ │ └── SourceCode.xaml.cs │ ├── app.config │ ├── packages.config │ ├── readme.txt │ └── report.ico ├── EFCodeFirstMvc4Sample │ ├── App_Data │ │ ├── Pdf │ │ │ ├── EFSample-05a105552a414322a5de39da24a0add3.pdf │ │ │ ├── EFSample-07f6fc1f465e4b32b56e8ea4508a8724.pdf │ │ │ ├── EFSample-72fbd2b09a5c43a199e8d3875ee25e69.pdf │ │ │ └── EFSample-8e090e87115f41a093ed7929d02b77f7.pdf │ │ └── images │ │ │ └── 01.png │ ├── App_Start │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── EFCodeFirstMvc4Sample.csproj │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ └── Web.config │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config ├── EFCodeFirstSample │ ├── DocsPdfReport.cs │ ├── EFCodeFirstSample.csproj │ ├── EFDataSource.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── packages.config ├── MvcApplication │ ├── Content │ │ ├── Site.css │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui.css │ ├── Controllers │ │ └── PdfRptController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Images │ │ └── 01.png │ ├── MvcApplication.csproj │ ├── Pdf │ │ ├── RptIListSample-03a6b389f61649c9b7d914f49944efad.pdf │ │ ├── RptIListSample-25f50f28cb43479a92e5e675058e8b15.pdf │ │ ├── RptIListSample-609fab68a98944ae8482229aad23c641.pdf │ │ ├── RptIListSample-ff8484effefc47ea94fe66f943e72dd7.pdf │ │ └── RptIListSample.pdf │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Views │ │ ├── PdfRpt │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ │ └── irsans.ttf │ └── packages.config ├── PdfFilePrinter │ ├── AcroPrint.cs │ ├── PdfFilePrinter.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── PdfReportSamples │ ├── AccountingBalanceColumn │ │ └── AccountingBalanceColumnPdfReport.cs │ ├── AcroFormTemplate │ │ └── AcroFormTemplatePdfReport.cs │ ├── AdHocColumns │ │ └── AdHocColumnsPdfReport.cs │ ├── AnnotationField │ │ └── AnnotationFieldPdfReport.cs │ ├── AppPath.cs │ ├── Average │ │ ├── AveragePdfReport.cs │ │ └── RptItem.cs │ ├── Barcodes │ │ ├── BarcodesPdfReport.cs │ │ └── QRCodeTemplate.cs │ ├── CalculatedFields │ │ └── CalculatedFieldsPdfReport.cs │ ├── CharacterMap │ │ ├── CellTemplate.cs │ │ └── CharacterMapPdfReport.cs │ ├── ChartImage │ │ ├── ChartImagePdfReport.cs │ │ └── MSChartHelper.cs │ ├── CsvToPdf │ │ └── CsvToPdfReport.cs │ ├── CustomCellTemplate │ │ ├── CustomCellTemplatePdfReport.cs │ │ └── MyCustomCellTemplate.cs │ ├── CustomHeaderFooter │ │ ├── CustomFooter.cs │ │ ├── CustomHeader.cs │ │ └── CustomHeaderFooterPdfReport.cs │ ├── CustomPriceNumber │ │ ├── CustomPriceCell.cs │ │ └── CustomPriceNumberPdfReport.cs │ ├── CustomSummaryPerPage │ │ └── CustomSummaryPerPagePdfReport.cs │ ├── DataAnnotations │ │ ├── DataAnnotationsPdfReport.cs │ │ ├── Person.cs │ │ └── PersonnelDataSource.cs │ ├── DbImage │ │ └── DbImagePdfReport.cs │ ├── DigitalSignature │ │ └── DigitalSignaturePdfReport.cs │ ├── DuplicateColumns │ │ └── DuplicateColumnsPdfReport.cs │ ├── DynamicCompile │ │ └── DynamicCompilePdfReport.cs │ ├── DynamicCrosstab │ │ └── DynamicCrosstabPdfReport.cs │ ├── EmailInMemoryPdf │ │ └── EmailInMemoryPdfReport.cs │ ├── Events │ │ └── EventsPdfReport.cs │ ├── ExcelToPdf │ │ └── ExcelToPdfReport.cs │ ├── ExpensesCrosstab │ │ ├── ExpenseDataSource.cs │ │ └── ExpensesCrosstabPdfReport.cs │ ├── ExtraHeadingCells │ │ ├── DataGenerator.cs │ │ └── ExtraHeadingCellsPdfReport.cs │ ├── Grouping │ │ ├── GroupingHeaders.cs │ │ └── GroupingPdfReport.cs │ ├── GroupingDocs │ │ ├── GroupingDocsPdfReport.cs │ │ └── VoucherRowPrintViewModel.cs │ ├── HexDump │ │ ├── GrayTemplate.cs │ │ ├── HexDumpPdfReport.cs │ │ └── PrintHex.cs │ ├── HtmlCellTemplate │ │ └── HtmlCellTemplatePdfReport.cs │ ├── HtmlHeader │ │ └── HtmlHeaderPdfReport.cs │ ├── HtmlHeaderRtl │ │ └── HtmlHeaderRtlPdfReport.cs │ ├── IList │ │ └── IListPdfReport.cs │ ├── ImageFilePath │ │ └── ImageFilePathPdfReport.cs │ ├── InMemory │ │ └── InMemoryPdfReport.cs │ ├── InjectCustomRows │ │ ├── InjectCustomRowsDataSource.cs │ │ └── InjectCustomRowsPdfReport.cs │ ├── InlineProviders │ │ └── InlineProvidersPdfReport.cs │ ├── LongTextInCell │ │ ├── ApprovalReport.cs │ │ └── LongTextInCellPdfReport.cs │ ├── MailingLabel │ │ ├── MailingLabelCellTemplate.cs │ │ └── MailingLabelPdfReport.cs │ ├── MasterDetails │ │ ├── MasterDetailsHeaders.cs │ │ └── MasterDetailsPdfReport.cs │ ├── MergePdfFiles │ │ └── MergePdfFilesPdfReport.cs │ ├── MergePdfFilesInMemory │ │ ├── MergeInMemoryPdfFilesPdfReport.cs │ │ └── PdfReportToArray.cs │ ├── Models │ │ ├── AcroFormModel.cs │ │ ├── CharacterInfo.cs │ │ ├── ClassSession.cs │ │ ├── CustomerType.cs │ │ ├── Employee.cs │ │ ├── Expense.cs │ │ ├── FlatContact.cs │ │ ├── FontSample.cs │ │ ├── ImageRecord.cs │ │ ├── JobTitle.cs │ │ ├── MailInfo.cs │ │ ├── Order.cs │ │ ├── OrderType.cs │ │ ├── Orders.cs │ │ ├── Payment.cs │ │ ├── Person.cs │ │ ├── Phone.cs │ │ ├── PhoneType.cs │ │ ├── PunchOutTimeRecord.cs │ │ ├── Question.cs │ │ ├── Shipping.cs │ │ ├── StudentGrade.cs │ │ ├── StudentStat.cs │ │ ├── Task.cs │ │ ├── Transaction.cs │ │ ├── TransactionType.cs │ │ ├── User.cs │ │ ├── UserMonthCalendar.cs │ │ └── UserWorkedHours.cs │ ├── MonthCalendar │ │ ├── MonthCalendarDataSource.cs │ │ └── MonthCalendarPdfReport.cs │ ├── NestedProperties │ │ ├── NestedPropertiesPdfReport.cs │ │ └── SessionsDataSource.cs │ ├── PdfA │ │ ├── PdfAPdfReport.cs │ │ └── TransactionsDataSource.cs │ ├── PdfReportSamples.csproj │ ├── PersianFontsListToPdf │ │ ├── FontsListCellTemplate.cs │ │ └── PersianFontsListToPdfReport.cs │ ├── PersianMonthCalendar │ │ ├── PersianMonthCalendarDataSource.cs │ │ └── PersianMonthCalendarPdfReport.cs │ ├── PersianRtl │ │ └── PersianRtlPdfReport.cs │ ├── ProgressReport │ │ └── ProgressReportPdfReport.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QuestionsAcroForm │ │ └── QuestionsAcroFormPdfReport.cs │ ├── QuestionsForm │ │ ├── EntryTemplate.cs │ │ └── QuestionsFormPdfReport.cs │ ├── SQLiteDataReader │ │ └── SQLiteDataReaderPdfReport.cs │ ├── SingleEntity │ │ ├── Document.cs │ │ ├── Rpt.cs │ │ └── SingleEntityPdfReport.cs │ ├── StackedProperties │ │ ├── CustomSum.cs │ │ └── StackedPropertiesPdfReport.cs │ ├── Tax │ │ └── TaxPdfReport.cs │ ├── Templates │ │ ├── GradientTestTemplate.cs │ │ └── TransparentTemplate.cs │ ├── UnequalPages │ │ └── UnequalPagesPdfReport.cs │ ├── VectorBarChart │ │ └── VectorBarChartPdfReport.cs │ ├── VectorPieChart │ │ └── VectorPieChartPdfReport.cs │ ├── WingdingsSymbols │ │ └── WingdingsSymbolsPdfReport.cs │ ├── WorkedHours │ │ ├── PunchOutTimePivot.cs │ │ ├── PunchOutTimeSampleDataSource.cs │ │ ├── WorkedHoursPdfReport.cs │ │ └── WorkedHoursSum.cs │ ├── WrapGroupsInColumns │ │ ├── WGHeaders.cs │ │ └── WrapGroupsInColumnsPdfReport.cs │ ├── XmlToPdf │ │ └── XmlToPdfReport.cs │ ├── ZapfDingbatsSymbols │ │ └── ZapfDingbatsSymbols.cs │ ├── app.config │ └── packages.config ├── PdfThumbnailComparer │ ├── PdfThumbnailComparer.Lib │ │ ├── ImageExt.cs │ │ ├── PdfThumbnailComparer.Lib.csproj │ │ ├── PdfToImage.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── ThumbData.cs │ ├── PdfThumbnailComparer │ │ ├── PdfThumbnailComparer.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ └── Prerequisites.txt ├── SQLiteTestDb │ ├── CreateEmptyDb.cs │ ├── FillDb.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SQLiteDbHelper.cs │ ├── SQLiteTestDb.csproj │ ├── app.config │ ├── packages.config │ └── readme.txt ├── SlPdf │ ├── SlPdf.Web │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Images │ │ │ └── 01.png │ │ ├── Pdf │ │ │ ├── RptDataTableSample.pdf │ │ │ ├── RptIListSample-0de94b33b040499f918ed2865b09eb0f.pdf │ │ │ ├── RptIListSample-1ba83f343fd44c7395aec09485aff411.pdf │ │ │ ├── RptIListSample-5cbcf4cc1c8c4588adf71183aa9dbeb0.pdf │ │ │ ├── RptIListSample-640ac49fe32b4b279c2b06075b79201d.pdf │ │ │ ├── RptIListSample-a0ea4ef895004034843e1f13b4aec3d2.pdf │ │ │ ├── RptIListSample-b8d3ad0f43334a2991444eb51941117f.pdf │ │ │ └── RptIListSample.pdf │ │ ├── PdfService.svc │ │ ├── PdfService.svc.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ShowPdf.aspx │ │ ├── ShowPdf.aspx.cs │ │ ├── ShowPdf.aspx.designer.cs │ │ ├── Silverlight.js │ │ ├── SilverlightFaultBehavior.cs │ │ ├── SlPdf.Web.csproj │ │ ├── SlPdfTestPage.aspx │ │ ├── SlPdfTestPage.html │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── fonts │ │ │ └── irsans.ttf │ │ └── packages.config │ ├── SlPdf.sln │ └── SlPdf │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── Service References │ │ └── PdfServiceReference │ │ │ ├── PdfService.disco │ │ │ ├── PdfService.wsdl │ │ │ ├── PdfService.xsd │ │ │ ├── PdfService1.wsdl │ │ │ ├── PdfService1.xsd │ │ │ ├── Reference.cs │ │ │ ├── Reference.svcmap │ │ │ ├── configuration.svcinfo │ │ │ └── configuration91.svcinfo │ │ ├── ServiceReferences.ClientConfig │ │ ├── SlPdf.csproj │ │ └── readme.txt ├── WebAppTests │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Images │ │ └── 01.png │ ├── Pdf │ │ ├── RptIListSample-1bd62c6f96f145d2996c2be48217d8ba.pdf │ │ ├── RptIListSample-7fd63e25c30447cba55ba845246380ee.pdf │ │ ├── RptIListSample-e6ea3d4841944c31af8539461806fa41.pdf │ │ ├── RptIListSample-fc4146ff23aa40228495f3bc0b1fa4bc.pdf │ │ └── RptIListSample.pdf │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── UpdatePanelTest.aspx │ ├── UpdatePanelTest.aspx.cs │ ├── UpdatePanelTest.aspx.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WebAppTests.csproj │ ├── fonts │ │ └── irsans.ttf │ └── packages.config ├── Win81PDFViewer │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MicrosoftStreamExtensions.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Win81PDFViewer.csproj ├── Win81PdfToImage │ ├── App.config │ ├── MicrosoftStreamExtensions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Win81PdfToImage.csproj │ └── packages.config ├── WindowsFormsAppTests │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WindowsFormsAppTests.csproj │ ├── app.config │ ├── packages.config │ └── readme.txt ├── WpfAppAcroReader │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ │ ├── AcroReader.Designer.cs │ │ ├── AcroReader.cs │ │ └── AcroReader.resx │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WpfPdfViewer.csproj │ ├── app.config │ ├── packages.config │ └── readme.txt ├── WpfAppTests │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WpfAppTests.csproj │ ├── app.config │ ├── packages.config │ └── readme.txt └── jqGridToPdfReportMvcApp │ ├── App_Start │ └── RouteConfig.cs │ ├── Content │ ├── Images │ │ └── 01.png │ ├── Site.css │ ├── jquery.jqGrid │ │ └── ui.jqgrid.css │ └── themes │ │ └── base │ │ ├── accordion.css │ │ ├── all.css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── button.css │ │ ├── core.css │ │ ├── datepicker.css │ │ ├── dialog.css │ │ ├── draggable.css │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── menu.css │ │ ├── progressbar.css │ │ ├── resizable.css │ │ ├── selectable.css │ │ ├── selectmenu.css │ │ ├── slider.css │ │ ├── sortable.css │ │ ├── spinner.css │ │ ├── tabs.css │ │ ├── theme.css │ │ └── tooltip.css │ ├── Controllers │ └── HomeController.cs │ ├── Extensions │ ├── JqGridSearch.cs │ ├── LinqExtensions.cs │ └── ReflectionHelper.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ ├── JqGridData.cs │ ├── JqGridRequest.cs │ ├── Product.cs │ ├── ProductDataSource.cs │ └── SearchFilter.cs │ ├── PdfReports │ ├── AppPath.cs │ └── ProductsPdfReport.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Scripts │ ├── i18n │ │ ├── grid.locale-ar.js │ │ ├── grid.locale-bg.js │ │ ├── grid.locale-bg1251.js │ │ ├── grid.locale-cat.js │ │ ├── grid.locale-cn.js │ │ ├── grid.locale-cs.js │ │ ├── grid.locale-da.js │ │ ├── grid.locale-de.js │ │ ├── grid.locale-dk.js │ │ ├── grid.locale-el.js │ │ ├── grid.locale-en.js │ │ ├── grid.locale-es.js │ │ ├── grid.locale-fa.js │ │ ├── grid.locale-fi.js │ │ ├── grid.locale-fr.js │ │ ├── grid.locale-gl.js │ │ ├── grid.locale-he.js │ │ ├── grid.locale-hr.js │ │ ├── grid.locale-hr1250.js │ │ ├── grid.locale-hu.js │ │ ├── grid.locale-id.js │ │ ├── grid.locale-is.js │ │ ├── grid.locale-it.js │ │ ├── grid.locale-ja.js │ │ ├── grid.locale-kr.js │ │ ├── grid.locale-lt.js │ │ ├── grid.locale-mne.js │ │ ├── grid.locale-nl.js │ │ ├── grid.locale-no.js │ │ ├── grid.locale-pl.js │ │ ├── grid.locale-pt-br.js │ │ ├── grid.locale-pt.js │ │ ├── grid.locale-ro.js │ │ ├── grid.locale-ru.js │ │ ├── grid.locale-sk.js │ │ ├── grid.locale-sr-latin.js │ │ ├── grid.locale-sr.js │ │ ├── grid.locale-sv.js │ │ ├── grid.locale-th.js │ │ ├── grid.locale-tr.js │ │ ├── grid.locale-tw.js │ │ ├── grid.locale-ua.js │ │ └── grid.locale-vi.js │ ├── jquery-2.1.4.intellisense.js │ ├── jquery-2.1.4.js │ ├── jquery-2.1.4.min.js │ ├── jquery-2.1.4.min.map │ ├── jquery-ui-1.11.4.js │ ├── jquery-ui-1.11.4.min.js │ ├── jquery.jqGrid.min.js │ ├── jquery.jqGrid.src.js │ └── jquery.price_format.2.0.js │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── jqGridToPdfReportMvcApp.csproj │ └── packages.config └── sample.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.nuget/Package.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.nuget/Package.nuspec -------------------------------------------------------------------------------- /.nuget/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/.nuget/run.bat -------------------------------------------------------------------------------- /Bin/Data/AcroFormSample.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/AcroFormSample.odt -------------------------------------------------------------------------------- /Bin/Data/AcroFormSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/AcroFormSample.pdf -------------------------------------------------------------------------------- /Bin/Data/PdfHeaderTemplate.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/PdfHeaderTemplate.odt -------------------------------------------------------------------------------- /Bin/Data/PdfHeaderTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/PdfHeaderTemplate.pdf -------------------------------------------------------------------------------- /Bin/Data/blogs.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/blogs.sqlite -------------------------------------------------------------------------------- /Bin/Data/cert123.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/cert123.pfx -------------------------------------------------------------------------------- /Bin/Data/places.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/places.xml -------------------------------------------------------------------------------- /Bin/Data/questionTemplate.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/questionTemplate.odt -------------------------------------------------------------------------------- /Bin/Data/questionTemplate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/questionTemplate.pdf -------------------------------------------------------------------------------- /Bin/Data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/sample.csv -------------------------------------------------------------------------------- /Bin/Data/sample.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/sample.xls -------------------------------------------------------------------------------- /Bin/Data/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Data/sample.xlsx -------------------------------------------------------------------------------- /Bin/Images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Images/01.png -------------------------------------------------------------------------------- /Bin/Images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Images/02.png -------------------------------------------------------------------------------- /Bin/Images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Images/03.png -------------------------------------------------------------------------------- /Bin/Images/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Images/04.png -------------------------------------------------------------------------------- /Bin/Images/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Images/05.png -------------------------------------------------------------------------------- /Bin/Pdf/AccountingBalanceSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Pdf/AccountingBalanceSample.pdf -------------------------------------------------------------------------------- /Bin/Thumbs/AccountingBalanceColumn.AccountingBalanceColumnPdfReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/Thumbs/AccountingBalanceColumn.AccountingBalanceColumnPdfReport.png -------------------------------------------------------------------------------- /Bin/fonts/irsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Bin/fonts/irsans.ttf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Lib/AggregateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/AggregateProvider.cs -------------------------------------------------------------------------------- /Lib/Aggregates/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Average.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Average.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Empty.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Maximum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Maximum.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Minimum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Minimum.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/StdDev.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/StdDev.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Sum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Sum.cs -------------------------------------------------------------------------------- /Lib/Aggregates/Numbers/Variance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Aggregates/Numbers/Variance.cs -------------------------------------------------------------------------------- /Lib/BasicTemplateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/BasicTemplateProvider.cs -------------------------------------------------------------------------------- /Lib/Calendar/CalendarAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/CalendarAttributes.cs -------------------------------------------------------------------------------- /Lib/Calendar/CalendarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/CalendarData.cs -------------------------------------------------------------------------------- /Lib/Calendar/CalendarNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/CalendarNames.cs -------------------------------------------------------------------------------- /Lib/Calendar/CalendarType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/CalendarType.cs -------------------------------------------------------------------------------- /Lib/Calendar/DayInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/DayInfo.cs -------------------------------------------------------------------------------- /Lib/Calendar/DaysInfoToCalendarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/DaysInfoToCalendarData.cs -------------------------------------------------------------------------------- /Lib/Calendar/GradientCellEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/GradientCellEvent.cs -------------------------------------------------------------------------------- /Lib/Calendar/MonthCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/MonthCalendar.cs -------------------------------------------------------------------------------- /Lib/Calendar/MonthTableCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Calendar/MonthTableCell.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/AnnotationField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/AnnotationField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/BarcodeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/BarcodeField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/ByteArrayImageField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/ByteArrayImageField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/CheckMarkField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/CheckMarkField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/HyperlinkField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/HyperlinkField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/ImageFilePathField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/ImageFilePathField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/InlineField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/InlineField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/MonthCalendarField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/MonthCalendarField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/PdfTemplateField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/PdfTemplateField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/ProgressBarField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/ProgressBarField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/SymbolField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/SymbolField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/TextBlockField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/TextBlockField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/WingdingsSymbolField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/WingdingsSymbolField.cs -------------------------------------------------------------------------------- /Lib/ColumnsItemsTemplates/XHtmlField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/ColumnsItemsTemplates/XHtmlField.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AdHocColumnsConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AdHocColumnsConventions.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AdobeZapfDingbats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AdobeZapfDingbats.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AggregateFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AggregateFunction.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AggregateValuePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AggregateValuePosition.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AnnotationFieldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AnnotationFieldData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AnnotationIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AnnotationIcon.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/AttachmentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/AttachmentFile.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/BasicTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/BasicTemplate.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellAttributes.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellBasicProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellBasicProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellRowData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellRowData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellSharedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellSharedData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CellType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CellType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CertificateFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CertificateFile.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ColumnAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ColumnAttributes.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CompressionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CompressionLevel.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/CompressionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/CompressionSettings.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DiagonalWatermark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DiagonalWatermark.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentFontStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentFontStyle.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentMargins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentMargins.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentMetadata.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentPermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentPermissions.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/DocumentSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/DocumentSecurity.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/Encryption.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/EncryptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/EncryptionType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/Events.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/EventsArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/EventsArguments.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/FileAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/FileAttachment.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/FlushType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/FlushType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/FooterBasicProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/FooterBasicProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/FooterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/FooterData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/GroupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/GroupType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/GroupsPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/GroupsPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/HeaderBasicProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/HeaderBasicProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/HeaderData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/HeaderData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/HeadingCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/HeadingCell.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/HorizontalAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/HorizontalAlignment.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/HorizontalStackPanelPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/HorizontalStackPanelPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IAggregateFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IAggregateFunc.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IColumnItemsTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IColumnItemsTemplate.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IDataExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IDataExporter.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IDataSource.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IPageFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IPageFooter.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IPageHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IPageHeader.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IPdfFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IPdfFont.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/IPdfReportData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/IPdfReportData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ITableTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ITableTemplate.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ImportedPageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ImportedPageInfo.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/InlineFieldData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/InlineFieldData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/LastRenderedRowData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/LastRenderedRowData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/MainTablePreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/MainTablePreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/MultipleColumnsPerPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/MultipleColumnsPerPage.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/NonFullScreenPageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/NonFullScreenPageMode.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PageOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PageOrientation.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PagePreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PagePreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PagesDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PagesDirection.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PasswordEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PasswordEncryption.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfGrid.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfPageSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfPageSize.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfRunDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfRunDirection.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfVersion.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfViewerPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfViewerPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PdfXConformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PdfXConformance.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PrintScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PrintScaling.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PrintSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PrintSide.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PrintingPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PrintingPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/PublicKeyEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/PublicKeyEncryption.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/RowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/RowType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SharedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SharedData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/Signature.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SigningInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SigningInfo.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SummaryCellAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SummaryCellAttributes.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SummaryCellData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SummaryCellData.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SummaryCellSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SummaryCellSettings.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/SummaryLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/SummaryLocation.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/TableColumnWidthType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/TableColumnWidthType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/TableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/TableType.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/TsaClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/TsaClient.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/VerticalTextAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/VerticalTextAlignment.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ViewerPageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ViewerPageLayout.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ViewerPageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ViewerPageMode.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/ViewerPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/ViewerPreferences.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/VisibleSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/VisibleSignature.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/Wingdings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/Wingdings.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/XFooterBasicProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/XFooterBasicProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Contracts/XHeaderBasicProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Contracts/XHeaderBasicProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/AggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/AggregateException.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ApplyDataAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ApplyDataAnnotations.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/BackgroundImageTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/BackgroundImageTemplate.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/CellDataExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/CellDataExt.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ColorExtensions.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/CompileAsIPdfRptData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/CompileAsIPdfRptData.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/DiagonalWatermarkManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/DiagonalWatermarkManager.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/DocumentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/DocumentSettings.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/DumpNestedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/DumpNestedProperties.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ElementsWidth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ElementsWidth.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ExcelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ExcelHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ExporterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ExporterManager.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/ExtractPdfFileAttachments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/ExtractPdfFileAttachments.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/FastReflection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/FastReflection.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/FuncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/FuncHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/GradientBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/GradientBackground.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/Guard.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/Hash.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HeaderFooterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HeaderFooterManager.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/ImageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/ImageProvider.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/RtlElementsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/RtlElementsCollector.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/SimpleElementsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/SimpleElementsCollector.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/TotalPagesNumberXmlWorkerProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/TotalPagesNumberXmlWorkerProcessor.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/UnicodeFontProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/UnicodeFontProvider.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/XmlWorkerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/XmlWorkerHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HtmlToPdf/XmlWorkerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HtmlToPdf/XmlWorkerUtils.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/HumanReadableInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/HumanReadableInteger.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/MergePdfDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/MergePdfDocuments.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PdfConformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PdfConformance.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PdfImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PdfImageHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PdfPageSizeToRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PdfPageSizeToRectangle.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PersianDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PersianDate.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PersianNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PersianNumber.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PropertyDataAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PropertyDataAnnotations.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/PropertyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/PropertyHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/RunDirectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/RunDirectionHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/SoftHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/SoftHttpContext.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/StreamHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/StreamHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/TableCellDefinitionsExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/TableCellDefinitionsExt.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/TableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/TableHelper.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/VectorImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/VectorImages.cs -------------------------------------------------------------------------------- /Lib/Core/Helper/srgb.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Helper/srgb.profile -------------------------------------------------------------------------------- /Lib/Core/PdfTable/AdHocPdfColumnDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/AdHocPdfColumnDefinitions.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/GroupsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/GroupsManager.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/InitTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/InitTable.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/MainTableCellsEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/MainTableCellsEvent.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/PageEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/PageEvents.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/RenderMainTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/RenderMainTable.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/RowsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/RowsManager.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/TableCellHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/TableCellHelper.cs -------------------------------------------------------------------------------- /Lib/Core/PdfTable/TablesInColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/PdfTable/TablesInColumns.cs -------------------------------------------------------------------------------- /Lib/Core/Security/EncryptionWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Security/EncryptionWorker.cs -------------------------------------------------------------------------------- /Lib/Core/Security/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Security/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/Core/Security/PfxData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Security/PfxData.cs -------------------------------------------------------------------------------- /Lib/Core/Security/PfxReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Security/PfxReader.cs -------------------------------------------------------------------------------- /Lib/Core/Security/SignatureWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Core/Security/SignatureWriter.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/AggregateFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/AggregateFunctionAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/CalculatedFieldFormulaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/CalculatedFieldFormulaAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/CellsHorizontalAlignmentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/CellsHorizontalAlignmentAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/ColumnItemsTemplateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/ColumnItemsTemplateAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/CustomAggregateFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/CustomAggregateFunctionAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/FixedHeightAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/FixedHeightAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/IncludeInGroupingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/IncludeInGroupingAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/IncludedGroupFieldEqualityComparerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/IncludedGroupFieldEqualityComparerAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/IsCalculatedFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/IsCalculatedFieldAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/IsVisibleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/IsVisibleAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/MinimumHeightAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/MinimumHeightAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/OrderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/OrderAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/PropertyNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/PropertyNameAttribute.cs -------------------------------------------------------------------------------- /Lib/DataAnnotations/WidthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataAnnotations/WidthAttribute.cs -------------------------------------------------------------------------------- /Lib/DataSources/AccessDataReaderDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/AccessDataReaderDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/AnonymousTypeListDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/AnonymousTypeListDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/CrosstabDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/CrosstabDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/CrosstabExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/CrosstabExtension.cs -------------------------------------------------------------------------------- /Lib/DataSources/DataTableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/DataTableDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/ExcelDataReaderDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/ExcelDataReaderDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/GenericDataReaderDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/GenericDataReaderDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/DataSources/OdbcDataReaderDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/OdbcDataReaderDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/SqlDataReaderDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/SqlDataReaderDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/SqlParametersParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/SqlParametersParser.cs -------------------------------------------------------------------------------- /Lib/DataSources/StronglyTypedListDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/StronglyTypedListDataSource.cs -------------------------------------------------------------------------------- /Lib/DataSources/XmlDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/DataSources/XmlDataSource.cs -------------------------------------------------------------------------------- /Lib/Export/ExportToCsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Export/ExportToCsv.cs -------------------------------------------------------------------------------- /Lib/Export/ExportToExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Export/ExportToExcel.cs -------------------------------------------------------------------------------- /Lib/Export/ExportToXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Export/ExportToXml.cs -------------------------------------------------------------------------------- /Lib/Export/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Export/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/AggregateFunctionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/AggregateFunctionBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/ColumnAttributesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/ColumnAttributesBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/ColumnItemsTemplateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/ColumnItemsTemplateBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/CustomRowsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/CustomRowsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/DataBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/DataBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/DataTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/DataTemplate.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/DefaultFontsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/DefaultFontsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/DefaultHeaderProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/DefaultHeaderProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/DocumentPreferencesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/DocumentPreferencesBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/EncryptedFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/EncryptedFileBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/ExportToBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/ExportToBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/FileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/FileBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/GenericFontProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/GenericFontProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/HeaderCellsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/HeaderCellsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/InjectCustomRowsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/InjectCustomRowsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/InlineFieldBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/InlineFieldBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/InlineFooterProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/InlineFooterProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/InlineHeaderProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/InlineHeaderProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableAdHocColumnsConventionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableAdHocColumnsConventionsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableColumnsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableColumnsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableDataSourceBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableDataSourceBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableEventsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableEventsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTablePreferencesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTablePreferencesBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableSummarySettingsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableSummarySettingsBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/MainTableTemplateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/MainTableTemplateBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/PagesFooterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/PagesFooterBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/PagesHeaderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/PagesHeaderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/PdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/PdfReport.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/SignedFileBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/SignedFileBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/XHtmlFooterProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/XHtmlFooterProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FluentInterface/XHtmlHeaderProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FluentInterface/XHtmlHeaderProviderBuilder.cs -------------------------------------------------------------------------------- /Lib/FooterTemplates/DefaultFooterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FooterTemplates/DefaultFooterProvider.cs -------------------------------------------------------------------------------- /Lib/FooterTemplates/InlineFooterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FooterTemplates/InlineFooterProvider.cs -------------------------------------------------------------------------------- /Lib/FooterTemplates/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FooterTemplates/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/FooterTemplates/XHtmlFooterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/FooterTemplates/XHtmlFooterProvider.cs -------------------------------------------------------------------------------- /Lib/GenericFontProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/GenericFontProvider.cs -------------------------------------------------------------------------------- /Lib/HeaderTemplates/DefaultHeaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/HeaderTemplates/DefaultHeaderProvider.cs -------------------------------------------------------------------------------- /Lib/HeaderTemplates/InlineHeaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/HeaderTemplates/InlineHeaderProvider.cs -------------------------------------------------------------------------------- /Lib/HeaderTemplates/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/HeaderTemplates/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/HeaderTemplates/XHtmlHeaderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/HeaderTemplates/XHtmlHeaderProvider.cs -------------------------------------------------------------------------------- /Lib/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Key.snk -------------------------------------------------------------------------------- /Lib/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/NamespaceDoc.cs -------------------------------------------------------------------------------- /Lib/PdfReportDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/PdfReportDocument.cs -------------------------------------------------------------------------------- /Lib/PdfRpt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/PdfRpt.csproj -------------------------------------------------------------------------------- /Lib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/BarChartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/BarChartItem.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/HorizontalBarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/HorizontalBarChart.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/IVectorChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/IVectorChart.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/PieChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/PieChart.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/PieChartSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/PieChartSegment.cs -------------------------------------------------------------------------------- /Lib/VectorCharts/VerticalBarChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/VectorCharts/VerticalBarChart.cs -------------------------------------------------------------------------------- /Lib/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/app.config -------------------------------------------------------------------------------- /Lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Lib/packages.config -------------------------------------------------------------------------------- /PdfRpt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/PdfRpt.sln -------------------------------------------------------------------------------- /Prerequisites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Prerequisites.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/README.md -------------------------------------------------------------------------------- /Samples/DemosBrowser/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/App.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/App.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Behaviors/AutoScrollListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Behaviors/AutoScrollListView.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Behaviors/WindowsFormsHostBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Behaviors/WindowsFormsHostBehavior.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/BusyIndicator.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/SourceCodeEditor/ExtInline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/SourceCodeEditor/ExtInline.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/SourceCodeEditor/ExtParagraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/SourceCodeEditor/ExtParagraph.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/SourceCodeEditor/IParagraphProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/SourceCodeEditor/IParagraphProcessor.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/SourceCodeEditor/ParagraphProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/SourceCodeEditor/ParagraphProcessor.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/SourceCodeEditor/SourceCodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/SourceCodeEditor/SourceCodeEditor.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Controls/VisualStates.BusyIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Controls/VisualStates.BusyIndicator.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Converters/FileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Converters/FileNameConverter.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Converters/RunDirectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Converters/RunDirectionConverter.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Converters/SamplesNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Converters/SamplesNameConverter.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Converters/ShellThumbnailConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Converters/ShellThumbnailConverter.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Converters/WaterMarkConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Converters/WaterMarkConverter.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Core/SamplesList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Core/SamplesList.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/DemosBrowser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/DemosBrowser.csproj -------------------------------------------------------------------------------- /Samples/DemosBrowser/Images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Images/run.png -------------------------------------------------------------------------------- /Samples/DemosBrowser/Images/toolbar_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Images/toolbar_find.png -------------------------------------------------------------------------------- /Samples/DemosBrowser/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Models/BrowserGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Models/BrowserGui.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Models/CodeGenGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Models/CodeGenGui.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Models/TestResultItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Models/TestResultItem.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Models/TestResultItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Models/TestResultItems.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/DemosBrowser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/DemosBrowser/Themes/ExpressionDark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Themes/ExpressionDark.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Themes/Generic.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.Designer.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/AcrobatReader/AcroPdf.resx -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/AcrobatReader/ShellThumbnail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/AcrobatReader/ShellThumbnail.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/FilesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/FilesInfo.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/Memory.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/MtObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/MtObservableCollection.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/OpenStackTraceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/OpenStackTraceFile.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/Performance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/Performance.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Helper/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Helper/ResourceHelper.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Mvvm/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Mvvm/DelegateCommand.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Mvvm/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Mvvm/ViewModelBase.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Threading/DispatcherHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Threading/DispatcherHelper.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Toolkit/Threading/ParallelTasksQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Toolkit/Threading/ParallelTasksQueue.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/ViewModels/BrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/ViewModels/BrowserViewModel.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/Browser.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/Browser.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/Browser.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/Browser.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/DemosList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/DemosList.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/DemosList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/DemosList.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/IntegrationTests.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/IntegrationTests.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/IntegrationTests.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/IntegrationTests.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/Output.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/Output.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/Output.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/Output.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/SourceCode.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/SourceCode.xaml -------------------------------------------------------------------------------- /Samples/DemosBrowser/Views/SourceCode.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/Views/SourceCode.xaml.cs -------------------------------------------------------------------------------- /Samples/DemosBrowser/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/app.config -------------------------------------------------------------------------------- /Samples/DemosBrowser/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/packages.config -------------------------------------------------------------------------------- /Samples/DemosBrowser/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/readme.txt -------------------------------------------------------------------------------- /Samples/DemosBrowser/report.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/DemosBrowser/report.ico -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/App_Data/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/App_Data/images/01.png -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/EFCodeFirstMvc4Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/EFCodeFirstMvc4Sample.csproj -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Global.asax -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Global.asax.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Views/Web.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Web.Debug.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Web.Release.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/Web.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstMvc4Sample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstMvc4Sample/packages.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/DocsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/DocsPdfReport.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/EFCodeFirstSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/EFCodeFirstSample.csproj -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/EFDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/EFDataSource.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/Program.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/app.config -------------------------------------------------------------------------------- /Samples/EFCodeFirstSample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/EFCodeFirstSample/packages.config -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/Site.css -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Samples/MvcApplication/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /Samples/MvcApplication/Controllers/PdfRptController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Controllers/PdfRptController.cs -------------------------------------------------------------------------------- /Samples/MvcApplication/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Global.asax -------------------------------------------------------------------------------- /Samples/MvcApplication/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Global.asax.cs -------------------------------------------------------------------------------- /Samples/MvcApplication/Images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Images/01.png -------------------------------------------------------------------------------- /Samples/MvcApplication/MvcApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/MvcApplication.csproj -------------------------------------------------------------------------------- /Samples/MvcApplication/Pdf/RptIListSample-03a6b389f61649c9b7d914f49944efad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Pdf/RptIListSample-03a6b389f61649c9b7d914f49944efad.pdf -------------------------------------------------------------------------------- /Samples/MvcApplication/Pdf/RptIListSample-25f50f28cb43479a92e5e675058e8b15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Pdf/RptIListSample-25f50f28cb43479a92e5e675058e8b15.pdf -------------------------------------------------------------------------------- /Samples/MvcApplication/Pdf/RptIListSample-609fab68a98944ae8482229aad23c641.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Pdf/RptIListSample-609fab68a98944ae8482229aad23c641.pdf -------------------------------------------------------------------------------- /Samples/MvcApplication/Pdf/RptIListSample-ff8484effefc47ea94fe66f943e72dd7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Pdf/RptIListSample-ff8484effefc47ea94fe66f943e72dd7.pdf -------------------------------------------------------------------------------- /Samples/MvcApplication/Pdf/RptIListSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Pdf/RptIListSample.pdf -------------------------------------------------------------------------------- /Samples/MvcApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/MvcApplication/Views/PdfRpt/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Views/PdfRpt/Index.cshtml -------------------------------------------------------------------------------- /Samples/MvcApplication/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Samples/MvcApplication/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Samples/MvcApplication/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Views/Web.config -------------------------------------------------------------------------------- /Samples/MvcApplication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Samples/MvcApplication/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Web.Debug.config -------------------------------------------------------------------------------- /Samples/MvcApplication/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Web.Release.config -------------------------------------------------------------------------------- /Samples/MvcApplication/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/Web.config -------------------------------------------------------------------------------- /Samples/MvcApplication/fonts/irsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/fonts/irsans.ttf -------------------------------------------------------------------------------- /Samples/MvcApplication/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/MvcApplication/packages.config -------------------------------------------------------------------------------- /Samples/PdfFilePrinter/AcroPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfFilePrinter/AcroPrint.cs -------------------------------------------------------------------------------- /Samples/PdfFilePrinter/PdfFilePrinter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfFilePrinter/PdfFilePrinter.csproj -------------------------------------------------------------------------------- /Samples/PdfFilePrinter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfFilePrinter/Program.cs -------------------------------------------------------------------------------- /Samples/PdfFilePrinter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfFilePrinter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/PdfFilePrinter/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfFilePrinter/app.config -------------------------------------------------------------------------------- /Samples/PdfReportSamples/AcroFormTemplate/AcroFormTemplatePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/AcroFormTemplate/AcroFormTemplatePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/AdHocColumns/AdHocColumnsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/AdHocColumns/AdHocColumnsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/AnnotationField/AnnotationFieldPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/AnnotationField/AnnotationFieldPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/AppPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/AppPath.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Average/AveragePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Average/AveragePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Average/RptItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Average/RptItem.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Barcodes/BarcodesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Barcodes/BarcodesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Barcodes/QRCodeTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Barcodes/QRCodeTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CalculatedFields/CalculatedFieldsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CalculatedFields/CalculatedFieldsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CharacterMap/CellTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CharacterMap/CellTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CharacterMap/CharacterMapPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CharacterMap/CharacterMapPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ChartImage/ChartImagePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ChartImage/ChartImagePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ChartImage/MSChartHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ChartImage/MSChartHelper.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CsvToPdf/CsvToPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CsvToPdf/CsvToPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomCellTemplate/CustomCellTemplatePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomCellTemplate/CustomCellTemplatePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomCellTemplate/MyCustomCellTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomCellTemplate/MyCustomCellTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomHeaderFooter/CustomFooter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomHeaderFooter/CustomFooter.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomHeaderFooter/CustomHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomHeaderFooter/CustomHeader.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomHeaderFooter/CustomHeaderFooterPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomHeaderFooter/CustomHeaderFooterPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomPriceNumber/CustomPriceCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomPriceNumber/CustomPriceCell.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomPriceNumber/CustomPriceNumberPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomPriceNumber/CustomPriceNumberPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/CustomSummaryPerPage/CustomSummaryPerPagePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/CustomSummaryPerPage/CustomSummaryPerPagePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DataAnnotations/DataAnnotationsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DataAnnotations/DataAnnotationsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DataAnnotations/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DataAnnotations/Person.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DataAnnotations/PersonnelDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DataAnnotations/PersonnelDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DbImage/DbImagePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DbImage/DbImagePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DigitalSignature/DigitalSignaturePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DigitalSignature/DigitalSignaturePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DuplicateColumns/DuplicateColumnsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DuplicateColumns/DuplicateColumnsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DynamicCompile/DynamicCompilePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DynamicCompile/DynamicCompilePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/DynamicCrosstab/DynamicCrosstabPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/DynamicCrosstab/DynamicCrosstabPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/EmailInMemoryPdf/EmailInMemoryPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/EmailInMemoryPdf/EmailInMemoryPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Events/EventsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Events/EventsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ExcelToPdf/ExcelToPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ExcelToPdf/ExcelToPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ExpensesCrosstab/ExpenseDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ExpensesCrosstab/ExpenseDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ExpensesCrosstab/ExpensesCrosstabPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ExpensesCrosstab/ExpensesCrosstabPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ExtraHeadingCells/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ExtraHeadingCells/DataGenerator.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ExtraHeadingCells/ExtraHeadingCellsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ExtraHeadingCells/ExtraHeadingCellsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Grouping/GroupingHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Grouping/GroupingHeaders.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Grouping/GroupingPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Grouping/GroupingPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/GroupingDocs/GroupingDocsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/GroupingDocs/GroupingDocsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/GroupingDocs/VoucherRowPrintViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/GroupingDocs/VoucherRowPrintViewModel.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HexDump/GrayTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HexDump/GrayTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HexDump/HexDumpPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HexDump/HexDumpPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HexDump/PrintHex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HexDump/PrintHex.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HtmlCellTemplate/HtmlCellTemplatePdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HtmlCellTemplate/HtmlCellTemplatePdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HtmlHeader/HtmlHeaderPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HtmlHeader/HtmlHeaderPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/HtmlHeaderRtl/HtmlHeaderRtlPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/HtmlHeaderRtl/HtmlHeaderRtlPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/IList/IListPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/IList/IListPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ImageFilePath/ImageFilePathPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ImageFilePath/ImageFilePathPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/InMemory/InMemoryPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/InMemory/InMemoryPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/InjectCustomRows/InjectCustomRowsDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/InjectCustomRows/InjectCustomRowsDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/InjectCustomRows/InjectCustomRowsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/InjectCustomRows/InjectCustomRowsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/InlineProviders/InlineProvidersPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/InlineProviders/InlineProvidersPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/LongTextInCell/ApprovalReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/LongTextInCell/ApprovalReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/LongTextInCell/LongTextInCellPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/LongTextInCell/LongTextInCellPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MailingLabel/MailingLabelCellTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MailingLabel/MailingLabelCellTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MailingLabel/MailingLabelPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MailingLabel/MailingLabelPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MasterDetails/MasterDetailsHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MasterDetails/MasterDetailsHeaders.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MasterDetails/MasterDetailsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MasterDetails/MasterDetailsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MergePdfFiles/MergePdfFilesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MergePdfFiles/MergePdfFilesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MergePdfFilesInMemory/MergeInMemoryPdfFilesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MergePdfFilesInMemory/MergeInMemoryPdfFilesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MergePdfFilesInMemory/PdfReportToArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MergePdfFilesInMemory/PdfReportToArray.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/AcroFormModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/AcroFormModel.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/CharacterInfo.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/ClassSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/ClassSession.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/CustomerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/CustomerType.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Employee.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Expense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Expense.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/FlatContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/FlatContact.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/FontSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/FontSample.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/ImageRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/ImageRecord.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/JobTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/JobTitle.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/MailInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/MailInfo.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Order.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/OrderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/OrderType.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Orders.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Payment.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Person.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Phone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Phone.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/PhoneType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/PhoneType.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/PunchOutTimeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/PunchOutTimeRecord.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Question.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Question.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Shipping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Shipping.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/StudentGrade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/StudentGrade.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/StudentStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/StudentStat.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Task.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/Transaction.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/TransactionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/TransactionType.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/User.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/UserMonthCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/UserMonthCalendar.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Models/UserWorkedHours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Models/UserWorkedHours.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MonthCalendar/MonthCalendarDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MonthCalendar/MonthCalendarDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/MonthCalendar/MonthCalendarPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/MonthCalendar/MonthCalendarPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/NestedProperties/NestedPropertiesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/NestedProperties/NestedPropertiesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/NestedProperties/SessionsDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/NestedProperties/SessionsDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PdfA/PdfAPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PdfA/PdfAPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PdfA/TransactionsDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PdfA/TransactionsDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PdfReportSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PdfReportSamples.csproj -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PersianFontsListToPdf/FontsListCellTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PersianFontsListToPdf/FontsListCellTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PersianFontsListToPdf/PersianFontsListToPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PersianFontsListToPdf/PersianFontsListToPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PersianMonthCalendar/PersianMonthCalendarDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PersianMonthCalendar/PersianMonthCalendarDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PersianMonthCalendar/PersianMonthCalendarPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PersianMonthCalendar/PersianMonthCalendarPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/PersianRtl/PersianRtlPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/PersianRtl/PersianRtlPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ProgressReport/ProgressReportPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ProgressReport/ProgressReportPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/QuestionsAcroForm/QuestionsAcroFormPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/QuestionsAcroForm/QuestionsAcroFormPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/QuestionsForm/EntryTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/QuestionsForm/EntryTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/QuestionsForm/QuestionsFormPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/QuestionsForm/QuestionsFormPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/SQLiteDataReader/SQLiteDataReaderPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/SQLiteDataReader/SQLiteDataReaderPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/SingleEntity/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/SingleEntity/Document.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/SingleEntity/Rpt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/SingleEntity/Rpt.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/SingleEntity/SingleEntityPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/SingleEntity/SingleEntityPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/StackedProperties/CustomSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/StackedProperties/CustomSum.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/StackedProperties/StackedPropertiesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/StackedProperties/StackedPropertiesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Tax/TaxPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Tax/TaxPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Templates/GradientTestTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Templates/GradientTestTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/Templates/TransparentTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/Templates/TransparentTemplate.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/UnequalPages/UnequalPagesPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/UnequalPages/UnequalPagesPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/VectorBarChart/VectorBarChartPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/VectorBarChart/VectorBarChartPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/VectorPieChart/VectorPieChartPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/VectorPieChart/VectorPieChartPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WingdingsSymbols/WingdingsSymbolsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WingdingsSymbols/WingdingsSymbolsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WorkedHours/PunchOutTimePivot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WorkedHours/PunchOutTimePivot.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WorkedHours/PunchOutTimeSampleDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WorkedHours/PunchOutTimeSampleDataSource.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WorkedHours/WorkedHoursPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WorkedHours/WorkedHoursPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WorkedHours/WorkedHoursSum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WorkedHours/WorkedHoursSum.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WrapGroupsInColumns/WGHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WrapGroupsInColumns/WGHeaders.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/WrapGroupsInColumns/WrapGroupsInColumnsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/WrapGroupsInColumns/WrapGroupsInColumnsPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/XmlToPdf/XmlToPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/XmlToPdf/XmlToPdfReport.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/ZapfDingbatsSymbols/ZapfDingbatsSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/ZapfDingbatsSymbols/ZapfDingbatsSymbols.cs -------------------------------------------------------------------------------- /Samples/PdfReportSamples/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/app.config -------------------------------------------------------------------------------- /Samples/PdfReportSamples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfReportSamples/packages.config -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/ImageExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/ImageExt.cs -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/PdfToImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/PdfToImage.cs -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/ThumbData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer.Lib/ThumbData.cs -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer/PdfThumbnailComparer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer/PdfThumbnailComparer.csproj -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer/Program.cs -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/PdfThumbnailComparer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/PdfThumbnailComparer/app.config -------------------------------------------------------------------------------- /Samples/PdfThumbnailComparer/Prerequisites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/PdfThumbnailComparer/Prerequisites.txt -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/CreateEmptyDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/CreateEmptyDb.cs -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/FillDb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/FillDb.cs -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/Program.cs -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/SQLiteDbHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/SQLiteDbHelper.cs -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/SQLiteTestDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/SQLiteTestDb.csproj -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/app.config -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/packages.config -------------------------------------------------------------------------------- /Samples/SQLiteTestDb/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SQLiteTestDb/readme.txt -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Default.aspx -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Default.aspx.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Global.asax -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Global.asax.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Images/01.png -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Pdf/RptDataTableSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Pdf/RptDataTableSample.pdf -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Pdf/RptIListSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Pdf/RptIListSample.pdf -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/PdfService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/PdfService.svc -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/PdfService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/PdfService.svc.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/ShowPdf.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/ShowPdf.aspx -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/ShowPdf.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/ShowPdf.aspx.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/ShowPdf.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/ShowPdf.aspx.designer.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Silverlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Silverlight.js -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/SilverlightFaultBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/SilverlightFaultBehavior.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/SlPdf.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/SlPdf.Web.csproj -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/SlPdfTestPage.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/SlPdfTestPage.aspx -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/SlPdfTestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/SlPdfTestPage.html -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Web.Debug.config -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Web.Release.config -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/Web.config -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/fonts/irsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/fonts/irsans.ttf -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.Web/packages.config -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf.sln -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/App.xaml -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/App.xaml.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/MainPage.xaml -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/MainPage.xaml.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Properties/AppManifest.xml -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.disco -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.wsdl -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService.xsd -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService1.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService1.wsdl -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/PdfService1.xsd -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/Reference.cs -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/Service References/PdfServiceReference/Reference.svcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/Service References/PdfServiceReference/Reference.svcmap -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/ServiceReferences.ClientConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/ServiceReferences.ClientConfig -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/SlPdf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/SlPdf.csproj -------------------------------------------------------------------------------- /Samples/SlPdf/SlPdf/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/SlPdf/SlPdf/readme.txt -------------------------------------------------------------------------------- /Samples/WebAppTests/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Default.aspx -------------------------------------------------------------------------------- /Samples/WebAppTests/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Default.aspx.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Default.aspx.designer.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Global.asax -------------------------------------------------------------------------------- /Samples/WebAppTests/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Global.asax.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/Images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Images/01.png -------------------------------------------------------------------------------- /Samples/WebAppTests/Pdf/RptIListSample-1bd62c6f96f145d2996c2be48217d8ba.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Pdf/RptIListSample-1bd62c6f96f145d2996c2be48217d8ba.pdf -------------------------------------------------------------------------------- /Samples/WebAppTests/Pdf/RptIListSample-7fd63e25c30447cba55ba845246380ee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Pdf/RptIListSample-7fd63e25c30447cba55ba845246380ee.pdf -------------------------------------------------------------------------------- /Samples/WebAppTests/Pdf/RptIListSample-e6ea3d4841944c31af8539461806fa41.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Pdf/RptIListSample-e6ea3d4841944c31af8539461806fa41.pdf -------------------------------------------------------------------------------- /Samples/WebAppTests/Pdf/RptIListSample-fc4146ff23aa40228495f3bc0b1fa4bc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Pdf/RptIListSample-fc4146ff23aa40228495f3bc0b1fa4bc.pdf -------------------------------------------------------------------------------- /Samples/WebAppTests/Pdf/RptIListSample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Pdf/RptIListSample.pdf -------------------------------------------------------------------------------- /Samples/WebAppTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/UpdatePanelTest.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/UpdatePanelTest.aspx -------------------------------------------------------------------------------- /Samples/WebAppTests/UpdatePanelTest.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/UpdatePanelTest.aspx.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/UpdatePanelTest.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/UpdatePanelTest.aspx.designer.cs -------------------------------------------------------------------------------- /Samples/WebAppTests/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Web.Debug.config -------------------------------------------------------------------------------- /Samples/WebAppTests/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Web.Release.config -------------------------------------------------------------------------------- /Samples/WebAppTests/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/Web.config -------------------------------------------------------------------------------- /Samples/WebAppTests/WebAppTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/WebAppTests.csproj -------------------------------------------------------------------------------- /Samples/WebAppTests/fonts/irsans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/fonts/irsans.ttf -------------------------------------------------------------------------------- /Samples/WebAppTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WebAppTests/packages.config -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/App.config -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/App.xaml -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/App.xaml.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/MicrosoftStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/MicrosoftStreamExtensions.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/Win81PDFViewer/Win81PDFViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PDFViewer/Win81PDFViewer.csproj -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/App.config -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/MicrosoftStreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/MicrosoftStreamExtensions.cs -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/Program.cs -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/Win81PdfToImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/Win81PdfToImage.csproj -------------------------------------------------------------------------------- /Samples/Win81PdfToImage/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/Win81PdfToImage/packages.config -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Form1.Designer.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Form1.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Form1.resx -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Program.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/WindowsFormsAppTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/WindowsFormsAppTests.csproj -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/app.config -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/packages.config -------------------------------------------------------------------------------- /Samples/WindowsFormsAppTests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WindowsFormsAppTests/readme.txt -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/App.xaml -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/App.xaml.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Controls/AcroReader.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Controls/AcroReader.Designer.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Controls/AcroReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Controls/AcroReader.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Controls/AcroReader.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Controls/AcroReader.resx -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/WpfPdfViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/WpfPdfViewer.csproj -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/app.config -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/packages.config -------------------------------------------------------------------------------- /Samples/WpfAppAcroReader/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppAcroReader/readme.txt -------------------------------------------------------------------------------- /Samples/WpfAppTests/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/App.xaml -------------------------------------------------------------------------------- /Samples/WpfAppTests/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/App.xaml.cs -------------------------------------------------------------------------------- /Samples/WpfAppTests/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/MainWindow.xaml -------------------------------------------------------------------------------- /Samples/WpfAppTests/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Samples/WpfAppTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/WpfAppTests/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Samples/WpfAppTests/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/Properties/Resources.resx -------------------------------------------------------------------------------- /Samples/WpfAppTests/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Samples/WpfAppTests/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/Properties/Settings.settings -------------------------------------------------------------------------------- /Samples/WpfAppTests/WpfAppTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/WpfAppTests.csproj -------------------------------------------------------------------------------- /Samples/WpfAppTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/app.config -------------------------------------------------------------------------------- /Samples/WpfAppTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/packages.config -------------------------------------------------------------------------------- /Samples/WpfAppTests/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/WpfAppTests/readme.txt -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/Images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/Images/01.png -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/Site.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/jquery.jqGrid/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/jquery.jqGrid/ui.jqgrid.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/accordion.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/all.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/autocomplete.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/base.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/button.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/core.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/datepicker.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/dialog.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/draggable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/draggable.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/menu.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/progressbar.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/resizable.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/selectable.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/selectmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/selectmenu.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/slider.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/sortable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/sortable.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/spinner.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/tabs.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/theme.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Content/themes/base/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Content/themes/base/tooltip.css -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Extensions/JqGridSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Extensions/JqGridSearch.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Extensions/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Extensions/LinqExtensions.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Extensions/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Extensions/ReflectionHelper.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Global.asax -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Global.asax.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Models/JqGridData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Models/JqGridData.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Models/JqGridRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Models/JqGridRequest.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Models/Product.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Models/ProductDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Models/ProductDataSource.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Models/SearchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Models/SearchFilter.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/PdfReports/AppPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/PdfReports/AppPath.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/PdfReports/ProductsPdfReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/PdfReports/ProductsPdfReport.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ar.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-bg.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-bg1251.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-bg1251.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cat.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cn.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-cs.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-da.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-de.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-dk.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-el.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-en.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-es.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fa.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fi.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-fr.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-gl.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-he.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hr.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hr1250.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hr1250.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-hu.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-id.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-is.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-it.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ja.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-kr.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-lt.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-mne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-mne.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-nl.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-no.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pl.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pt-br.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-pt.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ro.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ru.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sk.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sr-latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sr-latin.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sr.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-sv.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-th.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-tr.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-tw.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-ua.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/i18n/grid.locale-vi.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.intellisense.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-2.1.4.min.map -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-ui-1.11.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-ui-1.11.4.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery-ui-1.11.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery-ui-1.11.4.min.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery.jqGrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery.jqGrid.min.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery.jqGrid.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery.jqGrid.src.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Scripts/jquery.price_format.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Scripts/jquery.price_format.2.0.js -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Views/Web.config -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Web.Debug.config -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Web.Release.config -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/Web.config -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/jqGridToPdfReportMvcApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/jqGridToPdfReportMvcApp.csproj -------------------------------------------------------------------------------- /Samples/jqGridToPdfReportMvcApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/Samples/jqGridToPdfReportMvcApp/packages.config -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VahidN/PdfReport/HEAD/sample.png --------------------------------------------------------------------------------