Tool Description

Author: Optuma Team Last updated: Jun 15, 2021 16:38

Overview

Available in Optuma 2.0 and onward, support has been added to display a Description for the custom tool via the Define Tool function.

Example

procedure DefineTool(Tool : TTool);  
begin  
    Tool.Name := 'draw';  
    Tool.Desc := 'This a tool description'+#13+'xxx'+#13+'yyy'+#13+'zzzttt';  
    Tool.MouseClicks := 2;  
    Tool.Hint := 'This is a hint';  
    Tool.ToolType := ttDrawing; 
end;

Discussion