ImageGear v26.5 - Updated March 3, 2025
ImageGear.Core Assembly / ImageGear.Formats Namespace / ImGearFileFilters Class / Remove Method
ID of the format to be removed.




In This Topic
Remove Method (ImGearFileFilters)
In This Topic
Removes a format from the list based on the format ID.
Syntax
'Declaration
 
Public Sub Remove( _
   ByVal formatId As ImGearFormats _
) 
 
'Usage
 
Dim instance As ImGearFileFilters
Dim formatId As ImGearFormats
 
instance.Remove(formatId)

Parameters

formatId
ID of the format to be removed.
Remarks
Use this method if you do not 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 format is not in the list, nothing is done.

See Also