You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OnDoc/ExcelNet/WorksheetProperties.cs

22 lines
485 B

namespace FastExcel
{
/// <summary>
/// Extra properties for a worksheet
/// </summary>
public class WorksheetProperties
{
/// <summary>
/// Sheet index
/// </summary>
public int CurrentIndex { get; set; }
/// <summary>
/// Sheet Id
/// </summary>
public int SheetId { get; set; }
/// <summary>
/// Sheet name
/// </summary>
public string Name { get; set; }
}
}