Enum GridFormulaCopyFlags
Specifies behavior for copy, paste, and drag-and-drop operations.
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
[Flags]
public enum GridFormulaCopyFlags
Remarks
Settings determine whether the formula or the calculated result is copied and whether formula references are updated when cells containing formulas are pasted or dropped.
Fields
Name | Description |
---|---|
ClipBoardFormula | The formula text is placed on the Clipboard. |
ClipBoardReferencesAdjusted | Cell references in pasted formulas are adjusted for their new location. |
ClipBoardText | The computed value text is placed on the Clipboard. |
InsDelRangeReferencesUpdated | Cell references are updated when rows or columns are removed or inserted. |
NamedRangeReferencesUpdated | Cell references are updated when rows or columns are removed or inserted. |
None | No copy flags set. |
UpdateReferencesDuringDnD | Cell references are updated if the cell is moved using an Ole Drag and Drop operation within the same GridControl. |