0

how can i get parent name if parent is scrollbox.The following example return empty:

ShowMessage(Image1.Parent.Name);
M.MARAMI
  • 95
  • 9
  • 2
    See http://stackoverflow.com/a/35370868/4908529 You need `Image1.Parent.Parent.Name` – kami Feb 20 '16 at 13:19

1 Answers1

1

This works fine :

Image1.Parent.Parent.Name;
M.MARAMI
  • 95
  • 9