csharp 例如-CSHARP-GroupDocs.AssemblyExamples-GenerateReport-GenerateSingleRowFromDataSetinOpenDocumen

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 例如-CSHARP-GroupDocs.AssemblyExamples-GenerateReport-GenerateSingleRowFromDataSetinOpenDocumen相关的知识,希望对你有一定的参考价值。

// For complete examples and data files, please go to https://github.com/groupdocsassembly/GroupDocs_Assembly_NET
//Setting up source open document template
const String strDocumentTemplate = "Word Templates/Single Row_OpenDocument.odt";
//Setting up destination open document report 
const String strDocumentReport = "Word Reports/Single Row_DT Report.odt";
try
{
    //Instantiate DocumentAssembler class
    DocumentAssembler assembler = new DocumentAssembler();
    //Call AssembleDocument to generate Single Row Report in open document format
    assembler.AssembleDocument(CommonUtilities.GetSourceDocument(strDocumentTemplate), CommonUtilities.SetDestinationDocument(strDocumentReport), DataLayer.GetSingleCustomerDT(), "customer");
}
catch (Exception ex)
{
    Console.WriteLine(ex.Message);
}

以上是关于csharp 例如-CSHARP-GroupDocs.AssemblyExamples-GenerateReport-GenerateSingleRowFromDataSetinOpenDocumen的主要内容,如果未能解决你的问题,请参考以下文章

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndexAsynchronously.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexInMemory.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexOnDisk.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateWithOverwritingExistedIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CustomExtractor.cs