Frequently Asked Component Specific Questions

Options

Display all FAQ items

Search FAQ items:


Displaying items 1 to 1 of 1, page 1 of 1

<< previous next >>

TAdvSmoothDock
Disable internal drag/drop in TAdvSmoothDock

To disable the internal item drag/drop in the TAdvSmoothDock add the
OnItemStartDrag event and set Allow to false:

procedure TForm1.AdvSmoothDock1ItemStartDrag(Sender: TObject;
  DragItem: TAdvSmoothDockItem; var Allow: Boolean);
begin
  Allow := false;
end;