ImageEn, unit iexProcEffects

TIEImageEffectsList.Delete

TIEImageEffectsList.Delete


Declaration

procedure Delete(Index: Integer);


Description

Deletes an item from the active effects and updates the image.



Note:
 You do NOT need to call ImageEnView1.Update() after calling Delete(). It will update automatically
 As an alternative to deleting an effect, you can disable it by setting ImageEnView1.IEBitmap.EffectsChain.Items[].Enabled := False;


Example

// Remove the first effect
ImageEnView1.IEBitmap.EffectsChain.Delete( 0 );