PdfListBox.MultiSelection Property

Gets or sets a value indicating whether this list box can have more than one of its items selected.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public bool MultiSelection { get; set; }
VB
Public Property MultiSelection As Boolean
	Get
	Set

Property Value

Type: Boolean
true if this list box allows you to select multiple items. false if this list box does not allow you to select more than one item.

Remarks

This property is always true if SelectedItems collection contains multiple items. Setting this property to false throws PdfException if SelectedItems collection contains multiple items.

See Also