blob: 25f478c1df2d49b322bb600347aed5a5ad378ad9 [file] [log] [blame]
using System;
namespace AppsheetEpplus;
/// <summary>
/// Flag enum, specify all flags that you want to exclude from the copy.
/// </summary>
[Flags]
public enum ExcelRangeCopyOptionFlags {
/// <summary>
/// Exclude formulas from being copied
/// </summary>
ExcludeFormulas = 0x1,
}