Values that determine the behavior of the hole punch removal process.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum HolePunchRemoveCommandFlags Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum HolePunchRemoveCommandFlags : Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class HolePunchRemoveCommandFlags : public Enum |
Member | Description |
---|---|
None | No flags. |
UseDpi | The unit of measure for all properties of the HolePunchRemoveActivity is thousandths of an inch. Use the image's DPI to convert to pixels. This allows the processing of many images with different DPI. If this flag is not set, the unit of measure for all properties of the HolePunchRemoveActivity is pixels. |
SingleRegion | When HolePunchRemoveActivity returns, either HolePunchRemoveActivity.ImageRegion or HolePunchRemoveActivity.Region will reference a region that contains all of the removed hole punches. If LeadRegion is also set, HolePunchRemoveActivity.ImageRegion will be updated with a shallow copy of image that has a LEAD region that contains all of the removed hole punches. If LeadRegion is not set, HolePunchRemoveActivity.Region is updated with a Windows region that contains all of the removed hole punches. When the region (either LEAD or Windows) is no longer needed, it must be disposed (either region allocated in HolePunchRemoveActivity.ImageRegion or HolePunchRemoveActivity.Region). |
LeadRegion | When HolePunchRemoveActivity returns, HolePunchRemoveActivity.ImageRegion is updated with a shallow copy of the Run method image that also contains a region with all of the removed hole punches. This flag must be used in conjunction with SingleRegion. So set HolePunchRemoveActivity.Flags to SingleRegion | LeadRegion |
UseSize | Use the HolePunchRemoveActivity.MinimumHoleWidth, HolePunchRemoveActivity.MinimumHoleHeight, HolePunchRemoveActivity.MaximumHoleWidth, HolePunchRemoveActivity.MaximumHoleHeight properties of the HolePunchRemoveActivity to indicate the size of the hole punches to remove If this flag is not set, default values for the four sizes will be used. If HolePunchRemoveCommandFlags.UseDpi is set, the defaults are calculated from the image DPI. Otherwise, the defaults are calculated from the image width and height. |
UseCount | Use the HolePunchRemoveActivity.MinimumHoleCount and HolePunchRemoveActivity.MaximumHoleCount properties of the HolePunchRemoveActivity to indicate the number of hole punches to remove. If this flag is not set, the default values for the two count values will be used. These default values are as follows: HolePunchRemoveActivity.MinimumHoleCount = 3 and HolePunchRemoveActivity.MaximumHoleCount = 3. |
UseLocation | Use the HolePunchRemoveActivity.Location property of the HolePunchRemoveActivity to indicate the location of the hole punches to remove. If this flag is not set, a default of HolePunchRemoveCommandLocation.Left will be used. |
You can use a bitwise OR (|) to specify one or more flags.
System.Object
System.ValueType
System.Enum
Leadtools.Workflow.ImageProcessing.HolePunchRemoveCommandFlags
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family