class documentation

class MultipleSelectOptions(SetMixin): (source)

View In Hierarchy

Represents all the selected options in a ``<select multiple>`` element. You can add to this set-like option to select an option, or remove to unselect the option.

Method __init__ Undocumented
Method __iter__ Undocumented
Method __repr__ Undocumented
Method add Undocumented
Method remove Undocumented
Instance Variable select Undocumented
Property options Iterator of all the ``<option>`` elements.

Inherited from SetMixin:

Method __contains__ Undocumented
Method __len__ Undocumented
Method copy Undocumented
Method difference_update Undocumented
Method discard Undocumented
Method intersection_update Undocumented
Method symmetric_difference_update Undocumented
Method update Undocumented
Class Method _from_iterable Undocumented
def __init__(self, select): (source)

Undocumented

def __iter__(self): (source)

Undocumented

def __repr__(self): (source)

Undocumented

def add(self, item): (source)

Undocumented

def remove(self, item): (source)

Undocumented

Undocumented

Iterator of all the ``<option>`` elements.