Returns an array of integers representing the indexes of all selected images. Changing the content of this list doesn't change the actual selected images.
Note: ◼Items will be returned by MultiSelectedImages in index order. If you want the order they were selected add iemoDontSortMultiSelection to MultiSelectionOptions ◼This property is valid even if multiple selection is not enabled (i.e. returning SelectedImage). ◼To select multiple items, use SelectedImage
// Access files in the order that user selects them ImageEnMView1.MultiSelectionOptions := ImageEnMView1.MultiSelectionOptions + [iemoDontSortMultiSelection]; for i := 0 to ImageEnMView1.MultiSelectedImagesCount - 1 do...