Search
CsvImportForm Class
Remarks See Also
 






A form used to define options for CSV text data imports.

Namespace: MindFusion.Spreadsheet.WinForms
Assembly: MindFusion.Spreadsheet.WinForms.StandardForms

 Syntax

C#  Copy Code

public class CsvImportForm : Form

Visual Basic  Copy Code

Public Class CsvImportForm
    Inherits Form

 Remarks

This form can be used to import data from an CSV file. The form provides control over the import settings as well as preview of the imported data. To use the form, create an instance of the CsvImportForm class, by specifying the name of the CSV file to import, and call the ShowDialog method. The data can be subsequently imported in a worksheet by calling the form's Import method. The following image shows the form:

 Inheritance Hierarchy

System.Object
    System.MarshalByRefObject
        System.ComponentModel.Component
            System.Windows.Forms.Control
                System.Windows.Forms.ScrollableControl
                    System.Windows.Forms.ContainerControl
                        System.Windows.Forms.Form
                            MindFusion.Spreadsheet.WinForms.CsvImportForm

 See Also