Skip to content

Commit 1d2d972

Browse files
committed
enabling demo's multifield copy/paste
1 parent c8bd7b2 commit 1d2d972

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

demos/VCL/Locked Columns/Unit_Locked_Columns.pas

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ procedure TFormLocked.FormCreate(Sender: TObject);
4949

5050
TeeGrid1.Data:=Data;
5151

52+
//enabling multi-field copy-paste
53+
TeeGrid1.Grid.QuoteStringsOnCopy := false;
54+
TeeGrid1.Grid.CopyFieldSeparator := ';';
55+
TeeGrid1.Selected.Range.Enabled:= True;
56+
5257
FillBox;
5358

5459
// Example, lock some columns to left and right edges

0 commit comments

Comments
 (0)