ImageGear v26.5 - Updated March 3, 2025
ImageGear.Core Assembly / ImageGear.Processing.ImageClean Namespace / ImGearICBorderOptions Class
Members Example




ImGearICBorderOptions Class
Specifies parameters for ImGearIC.CleanBorders method.
Object Model
ImGearICBorderOptions Class
Syntax
'Declaration
 
Public NotInheritable Class ImGearICBorderOptions 
 
'Usage
 
Dim instance As ImGearICBorderOptions
Example
// Sets options for border cleaning and then applies them.
ImGearICBorderOptions igICBorderOptions = new ImGearICBorderOptions();
igICBorderOptions.nBottomBorderSize = 100;
igICBorderOptions.nLeftBorderSize = 100;
igICBorderOptions.nRightBorderSize = 120;
igICBorderOptions.nTopBorderSize = 100;
igICBorderOptions.nMinLinesNum = 10;
igICBorderOptions.nMinLineWidth = 10;
// Clean the borders using the options.
ImGearIC.CleanBorders(igRasterPage, igICBorderOptions);
Inheritance Hierarchy

System.Object
   ImageGear.Processing.ImageClean.ImGearICBorderOptions

See Also