value property

value property

Gets/sets the cell value.

Remarks

The value must be of the correct type of object corresponding to the CellValue.type:

TypeValue
null, any other object will be ignored
double
DateTime
string
bool
error string such as “#VALUE!”, “#NAME?”, …

Definition:

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

See Also