Tool Description
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;