Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

Docking - exclude Zone

In the Docking WiKi there is an example of how to exclude a docking zone:


procedure TForm1.SiteUpdateHotSpots(Sender: TObject;

  AZone: TLMDDockZone; var EnabledAreas: TLMDHotSpotAreas);

begin

  if AZone = CentralPanel.Zone then

    Exclude(EnabledAreas, hsaZoneTabs);

end;

However when I tried this hsaZoneTabs fails as an Undeclared Identifer. What should I use for this parameter? Am I missing something in Uses? I have LMDDckSite, LMDDckStyles, LMDDckStyleElems there.

Comments

Sign In or Register to comment.