ClosedXML.Excel.XLCell.InsertData(System.Data.DataTable)

Here are the examples of the csharp api class ClosedXML.Excel.XLCell.InsertData(System.Data.DataTable) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: ClosedXML
Source File: XLCell.cs
private bool SetDataTable(object o)
        {
            var dataTable = o as DataTable;
            if (dataTable == null) return false;
            return InsertData(dataTable) != null;
        }