[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.OpenOptionsBase.FileFormat

FileFormat Property

FileFormat

Gets the file format setting for these open options.

This value identifies the workbook format associated with the current options instance, such as Csv for CsvOpenOptions or Sjs for SjsOpenOptions.

Declaration
public OpenFileFormat FileFormat { get; protected set; }
Public Property FileFormat As OpenFileFormat
Examples
CsvOpenOptions options = new CsvOpenOptions();
OpenFileFormat fileFormat = options.FileFormat;
workbook.Open("path/to/data.csv", options);