Specifies what must be saved to undo a CommandRange.
            Syntax
            
            
            
            
            'Declaration
 
<System.FlagsAttribute()>
Public Enum CommandRangeUndoFlags 
   Inherits System.Enum
             
        
            
            'Usage
 
Dim instance As CommandRangeUndoFlags
             
        
            
            [System.Flags()]
public enum CommandRangeUndoFlags : System.Enum 
             
        
            
            public enum CommandRangeUndoFlags = class(System.Enum)
             
        
            
            System.FlagsAttribute()
public enum CommandRangeUndoFlags extends System.Enum
             
        
            
            [System.Flags()]
__value public enum CommandRangeUndoFlags : public System.Enum 
             
        
            
            [System.Flags()]
public enum class CommandRangeUndoFlags : public System.Enum 
             
        
             
         
            Members
| Member | Description | 
| AutoFilters | Specifies that autofilters be preserved. | 
| ColumnInfo | Specifies that column width, hidden state and outline info be preserved. | 
| Comments | Specifies that cell comments should be preserved. | 
| FormatBorders | Specifies that border formatting be preserved (including expanded range). | 
| FormatConditions | Specifies that conditional formats be preserved. | 
| Formats | Specifies that formatting is to be saved. | 
| FormulaFixups | Specifies that fixed up formulas outside of the primary range be preserved (for Insert, Delete and Cut/Paste). | 
| Hyperlinks | Specifies that hyperlinks should be preserved. | 
| MergeState | Specifies that merge state should be preserved. | 
| None | Specifies that nothing is to be saved. | 
| RowInfo | Specifies that row height, hidden state and outline info be preserved. | 
| Validation | Specifies that data validation should be preserved. | 
| Values | Specifies that values and formulas are to be preserved. | 
 
            
            
            
            Example
Multiple options may be specified by ORing them together, such as (CommandRangeUndoFlags.Values | CommandRangeUndoFlags.Formats).
            
            
            
            Inheritance Hierarchy
System.Object
   System.ValueType
      System.Enum
         SpreadsheetGear.Commands.CommandRangeUndoFlags
 
            Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
 
            
            See Also