VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / HolePunchFillingCommand Class / HolePunchLocation Property
Syntax Requirements SeeAlso
In This Topic
HolePunchLocation Property (HolePunchFillingCommand)
In This Topic
Gets or sets the location of the hole punches to remove.
Syntax
'Declaration

<DescriptionAttribute("The location of the hole punches to remove.")>
<DefaultValueAttribute(Left)>
Public Property HolePunchLocation As HolePunchLocation

[Description("The location of the hole punches to remove.")]
[DefaultValue(Left)]
public HolePunchLocation HolePunchLocation { get; set; }

Property Value

HolePunchLocation.Undefined - hole punches are removed on the whole image if region of interest is not specified OR in the region of interest if region of interest is specified;
HolePunchLocation.Left - hole punches are removed in the left part (ScanAreaWidth) of the whole image if region of interest is not specified OR in the left part (ScanAreaWidth) of the region of interest if region of interest is specified;
HolePunchLocation.Right - hole punches are removed in the right part (ScanAreaWidth) of the whole image if region of interest is not specified OR in the right part (ScanAreaWidth) of the region of interest if region of interest is specified;
HolePunchLocation.Top - hole punches are removed in the top part (ScanAreaHeight) of the whole image if region of interest is not specified OR in the top part (ScanAreaHeight) of the region of interest if region of interest is specified;
HolePunchLocation.Bottom - hole punches are removed in the bottom part (ScanAreaHeight) of the whole image if region of interest is not specified OR in the bottom part (ScanAreaHeight) of the region of interest if region of interest is specified.

Regions of the hole punch location can be combined.

Default value is HolePunchLocation.Left.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also