AnnMove example for C++ Builder
//This example moves one or more selected annotation objects.
void __fastcall TForm1::Button1Click(TObject *Sender)
{
int DeltaX, DeltaY;
//Specify arbitrary delta values.
DeltaX= 200;
DeltaY= 100;
//Move the selected annotations.
LEADAnn1->AnnMove (DeltaX, DeltaY, true);
}