24 lines
426 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|