Gets/sets a value indicating whether multiple items can be selected.

Namespace: Aurigma.GraphicsMill.WinControls
Assembly:   Aurigma.GraphicsMill.WinControls (in Aurigma.GraphicsMill.WinControls.dll)

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute(True)> _
<CategoryAttribute("Behavior")> _
Public Property MultiSelect As Boolean
C#
[DefaultValueAttribute(true)]
[CategoryAttribute("Behavior")]
public bool MultiSelect { get; set; }
Visual C++
[DefaultValueAttribute(true)]
[CategoryAttribute(L"Behavior")]
public:
property bool MultiSelect {
	bool get ();
	void set (bool value);
}

Property Value

true if multiple items can be selected at one time; otherwise, false. By default is true.

See Also