Table of Contents

Class PdfFormListBox

Namespace
EvoPdf
Assembly
evohtmltopdf.dll

Represents a list box in a PDF form

[ClassInterface(ClassInterfaceType.AutoDual)]
public class PdfFormListBox : PdfFormField
Inheritance
PdfFormListBox
Inherited Members

Properties

AllowMultiSelect

A flag indicating if it is allowed to have multiple selections in list box. This property is false by default

public bool AllowMultiSelect { get; set; }

Property Value

bool

CommitOnSelectionChanged

A flag indicating if a new value selected is committed immediately without waiting to leave the field. This property is false by default

public bool CommitOnSelectionChanged { get; set; }

Property Value

bool

Font

Gets or sets the font of the items in the list

public PdfFont Font { get; set; }

Property Value

PdfFont

ListItems

Gets or sets the items in the list box

public string[] ListItems { get; set; }

Property Value

string[]

SortItems

A flag indicating if the list items are sorted alphabetically. This property is false by default

public bool SortItems { get; set; }

Property Value

bool

SpellChecking

A flag indicating if the spell checking is enabled. This property is false by default

public bool SpellChecking { get; set; }

Property Value

bool