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

    Property Value

    True - tool allows to select next item; 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