format_numeric method

format_numeric(value, format)

Called when Aspose.Words applies a numeric format switch, i.e. \# “#.##”.

def format_numeric(self, value: float, format: str):
    ...
ParameterTypeDescription
valuefloat
formatstr

Remarks

The implementation should return None to indicate that the default formatting should be applied.

See Also