CPF/CPF.ReoGrid/IO/CSVFormatArgument.cs
2024-06-24 10:15:59 +08:00

24 lines
426 B
C#

using System;
namespace CPF.ReoGrid.IO
{
public class CSVFormatArgument
{
public bool AutoSpread { get; set; }
public int BufferLines { get; set; }
public string SheetName { get; set; }
public RangePosition TargetRange { get; set; }
public CSVFormatArgument()
{
this.AutoSpread = true;
this.BufferLines = 512;
this.SheetName = "Sheet1";
this.TargetRange = RangePosition.EntireRange;
}
}
}