VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / LineRemovalCommand Class / LinesType Property
Syntax Requirements SeeAlso
In This Topic
    LinesType Property (LineRemovalCommand)
    In This Topic
    Gets or sets the type of lines to remove.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(Custom)>
    <DescriptionAttribute("The type of lines to remove.")>
    Public Property LinesType As Vintasoft.Imaging.ImageProcessing.LinesType
    
    
    [DefaultValue(Custom)]
    [Description("The type of lines to remove.")]
    public Vintasoft.Imaging.ImageProcessing.LinesType LinesType { get; set; }
    
    
    [DefaultValue(Custom)]
    [Description("The type of lines to remove.")]
    public: __property Vintasoft.Imaging.ImageProcessing.LinesType get_LinesType();
    public: __property void set_LinesType(
    Vintasoft.Imaging.ImageProcessing.LinesType value
    );

    Property Value

    LinesType.Tables - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to 0, values of properties can be changed by user later;
    LinesType.FormFieldsLines - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to 0, values of properties can be changed by user later;
    LinesType.StrikeoutLines - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to 0, values of properties can be changed by user later;
    LinesType.PrinterArtifacts - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to 0, values of properties can be changed by user later;
    LinesType.NoiseLines - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to 0, values of properties can be changed by user later;
    LinesType.Custom - command sets values of MinLength, MaxLength, MinWidth and MaxWidth properties to default values, values of properties can be changed by user later.

    Default value is LinesType.Custom.
    Requirements

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

    See Also