Note: ◼Ensure that you have set UpperGap/BottomGap to allow space for the text ◼Setting Text only modifies the text that is displayed, not the value in ImageTopText/ImageInfoText/ImageBottomText
// Note: In form create we set IEFolderMView.UpperGap := 20;
// Display the file index above the frame procedure TForm1.IEFolderMViewGetText(Sender: TObject; Index: Integer; Position: TIEMTextPos; var Text: WideString); begin if Position = iemtpTop then Text := 'File #' + IntToStr(Index + 1); end;