ButtonRows example for Delphi

var
//Global declarations
RasterAnn: LEADRasterAnnotation;
RasterAnnToolbar: LEADRasterAnnToolBar;

procedure TForm1.Button1Click(Sender: TObject);
begin
   RasterAnn:= CoLEADRasterAnnotation.Create ();
   RasterAnnToolbar:= CoLEADRasterAnnToolBar.Create ();
   RasterAnn.AnnParentRasterView := LEADRasterView1.Raster;
   RasterAnnToolbar.AnnParentRasterView := LEADRasterView1.Raster;
   LEADEventSink1.Connect (RasterAnn, _LEADRasterAnnotationEvents);
   RasterAnn.AnnUserMode:= ANN_USERMODE_DESIGN;
end;

Procedure IncrementButtonRows(AnnToolBar: LEADRasterAnnToolBar);
var
   I: Integer;
begin
   if (AnnToolBar.ToolBarhWnd = 0) then
      Exit;
   AnnToolBar.ButtonRows:= AnnToolBar.ButtonRows + 1
end;