cf.CellMethod.set_method

CellMethod.set_method(value, copy=True)[source]

Set the method of the cell method.

New in version 1.7.0.

Parameters
value: str

The value for the method.

copy: bool, optional

If True then set a deep copy of value.

Returns

None

Examples:

>>> c.set_method('minimum')
>>> c.has_method()
True
>>> c.get_method()
'minimum'
>>> c.del_method()
>>> c.has_method()
False
>>> c.get_method('NO METHOD')
'NO METHOD'
>>> c.del_method('NO METHOD')
'NO METHOD'