procedure TfmIDEMain.dsMainUpdateHotSpots(Sender: TObject;
AZone: TLMDDockZone; var EnabledAreas: TLMDActiveAreas);
begin
if AZone.Panel.ClientKind = dkTool then
Exclude(EnabledAreas, hsaZoneTabs)
end;
The documentation seems to be behind the code because when I created an OnUpdateHotSpots Event I see the EnabledAreas is of type TLMDActiveAreas but that type is not recognized as a type and the TLMDHotSpotAreas is recognized.
Can you advise on what the datatypes should be and what changes I need to make to get type compatibility.
Comments