ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Formats Namespace / ImGearFileFilters Class / RemoveAt Method
Location (index) of an item to be removed.




In This Topic
RemoveAt Method (ImGearFileFilters)
In This Topic
Removes a format from the list at the specified position.
Syntax
'Declaration
 
Public Sub RemoveAt( _
   ByVal index As Integer _
) 
 
'Usage
 
Dim instance As ImGearFileFilters
Dim index As Integer
 
instance.RemoveAt(index)

Parameters

index
Location (index) of an item to be removed.
Remarks
Use this method if you don't need a particular format. This will exclude it from all ImageGear operations.

Note: If you just need to exclude a format from the auto-detection process, you can set its IImGearFormat.DetectionEnabled property to false. If the index is out of boundaries, an exception is thrown.

See Also