MathematicalText constructor

init(self)

Default constructor (create String.Empty Value)

def __init__(self):
    ...

init(self, math_symbol)

Create MathText with single symbol

def __init__(self, math_symbol):
    ...
ParameterTypeDescription
math_symbolcharsingle symbol

init(self, math_text)

Create MathematicalText from text

def __init__(self, math_text):
    ...
ParameterTypeDescription
math_textstrtext value

init(self, math_text, portion_format)

Create MathematicalText from text and format settings

def __init__(self, math_text, portion_format):
    ...
ParameterTypeDescription
math_textstrtext value
portion_formatIPortionFormattext format settings

See Also