VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Wpf.UI.VisualTools Namespace / WpfVisualTool Class / AllowNextItemSelection Property
Syntax Requirements SeeAlso
In This Topic
    AllowNextItemSelection Property (WpfVisualTool)
    In This Topic
    Gets or sets a value indicating whether the tool allows to change the focused item using the PerformNextItemSelection(Boolean) method.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Indicates that tool allows to change the focused item using SelectNextItemKeyGesture and SelectPrevItemKeyGesture key.")>
    <DefaultValueAttribute(True)>
    <CategoryAttribute("Behavior")>
    Public Overridable Property AllowNextItemSelection As Boolean
    
    
    [Description("Indicates that tool allows to change the focused item using SelectNextItemKeyGesture and SelectPrevItemKeyGesture key.")]
    [DefaultValue(True)]
    [Category("Behavior")]
    public virtual bool AllowNextItemSelection { get; set; }
    
    
    [Description("Indicates that tool allows to change the focused item using SelectNextItemKeyGesture and SelectPrevItemKeyGesture key.")]
    [DefaultValue(True)]
    [Category("Behavior")]
    public: __property virtual bool get_AllowNextItemSelection();
    public: __property virtual void set_AllowNextItemSelection(
    bool value
    );
    [Description("Indicates that tool allows to change the focused item using SelectNextItemKeyGesture and SelectPrevItemKeyGesture key.")]
    [DefaultValue(True)]
    [Category("Behavior")]
    public:
    virtual property bool AllowNextItemSelection { bool get(); void set(bool value); }

    Property Value

    True if the tool allows to change the focused item using the PerformNextItemSelection(Boolean) method; otherwise, false.
    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