TFlxInsertMode Enumeration
Inserting mode. Important: This enumeration is also used when deleting ranges. When deleting, Down means Up and Right means Left.
Syntax
Unit: FlexCel.Core
Members
Name |
Value |
Description |
NoneDown |
0 |
Cells will not be inserted but just overwrite existing ones. If count is >0, additional ranges will be copied down.
When deleting, this mode will clear the cells and not move anything.
|
NoneRight |
1 |
Cells will not be inserted but just overwrite existing ones. If count is >0, additional ranges will be copied right.
When deleting, this mode will clear the cells and not move anything.
|
ShiftRowDown |
2 |
Inserts whole rows. Moves all destination rows down.
When deleting, moves cells up.
|
ShiftColRight |
3 |
Inserts whole columns. Moves all destination columns to the right.
When deleting, moves columns to the right of the deleted columns to the left.
|
ShiftRangeDown |
4 |
Moves all destination cells down. This WON'T move the whole row, only cells on the range.
When deleting, moves cells up.
|
ShiftRangeRight |
5 |
Moves all destination cells to the right. This WON'T move the whole column, only cells on the range.
When deleting, moves cells to the left.
|