Property MultiSelection
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
MultiSelection
Gets or sets a value indicating whether this list box can have more than one of its items selected.
public bool MultiSelection { get; set; }
Property Value
- bool
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.
Exceptions
- UnexpectedStructureException
The value in the internal PDF structure has an unexpected type.
- PdfException
When setting this property to
false
and the number of selected items is greater than1
.