value property

value property

The current form control value (i.e. the value of the currently selected option), if multiple options are selected this is the value of the first selected option.

Definition:

@property
def value(self):
    ...
@value.setter
def value(self, value):
    ...

See Also