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, | |
} |