csharp ExcelData.cs

Posted

tags:

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

 // For complete examples and data files, please go to https://github.com/groupdocs-assembly/GroupDocs.Assembly-for-.NET
 DocumentTableOptions options = new DocumentTableOptions();
options.FirstRowContainsColumnNames = true;
// Use data of the _first_ worksheet.
DocumentTable table = new DocumentTable(excelDataFile, 0, options);
// Check column count, names, and types.
Debug.Assert(table.Columns.Count == 3);
Debug.Assert(table.Columns[0].Name == "Client");
Debug.Assert(table.Columns[0].Type == typeof(string));
Debug.Assert(table.Columns[1].Name == "Manager");
Debug.Assert(table.Columns[1].Type == typeof(string));
// NOTE: A space is replaced with an underscore, because spaces are not allowed in column names.
Debug.Assert(table.Columns[2].Name == "Contract_Price");
// NOTE: The type of the column is double, because all cells in the column contain numeric values.
Debug.Assert(table.Columns[2].Type == typeof(double));
return table;

以上是关于csharp ExcelData.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp ExcelData.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertWithCustomInputDataHandler.cs

csharp 例如-CSHARP-GroupDocs.Conversion.Examples.CSharp - 程序 - ConvertFilesToDifferentFormats.cs

csharp 例如-CSHARP-GroupDocs.Conversion.Examples.CSharp渲染,RenderPSDImageAsPath.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertTopresentationAsPath.cs

csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertTopresentationAsPath.cs