class documentation

class MultipleSelectOptions(SetMixin):

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):

Undocumented

def __iter__(self):

Undocumented

def __repr__(self):

Undocumented

def add(self, item):

Undocumented

def remove(self, item):

Undocumented

select =

Undocumented

@property
options =
Iterator of all the <option> elements.