VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Wpf.UI.VisualTools Namespace / WpfDragDropSelectionTool Class / FillDraggedRegion Property
Syntax Remarks Requirements SeeAlso
In This Topic
    FillDraggedRegion Property (WpfDragDropSelectionTool)
    In This Topic
    Gets or sets a value indicating whether this visual tool should fill dragged region with the DraggedRegionFillColor color.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("Indicates that visual tool should fill dragged region with the DraggedRegionFillColor color.")>
    <CategoryAttribute("Behavior")>
    Public Property FillDraggedRegion As Boolean
    
    
    [DefaultValue(True)]
    [Description("Indicates that visual tool should fill dragged region with the DraggedRegionFillColor color.")]
    [Category("Behavior")]
    public bool FillDraggedRegion { get; set; }
    
    
    [DefaultValue(True)]
    [Description("Indicates that visual tool should fill dragged region with the DraggedRegionFillColor color.")]
    [Category("Behavior")]
    public: __property bool get_FillDraggedRegion();
    public: __property void set_FillDraggedRegion(
    bool value
    );
    [DefaultValue(True)]
    [Description("Indicates that visual tool should fill dragged region with the DraggedRegionFillColor color.")]
    [Category("Behavior")]
    public:
    property bool FillDraggedRegion { bool get(); void set(bool value); }

    Property Value

    True - visual tool should fill dragged region with the DraggedRegionFillColor color; false - visual tool should not change the dragged region, i.e. image region just copied to the another region of the same image.
    Default value is true.
    Remarks

    Value of this property is ignored if CTRL key is pressed.

    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