IMathematicalTextFactory
public interface IMathematicalTextFactory
Allows to create a MathematicalText element
For COM comparibility
Methods
| Method | Description |
|---|---|
| createMathematicalText() | Create empty mathematical text element |
| createMathematicalText(char mathSymbol) | Create mathematical text element with the specified value |
| createMathematicalText(String mathText) | Create empty mathematical text element with the specified value |
| createMathematicalText(String mathText, IPortionFormat portionFormat) | Create empty mathematical text element with the specified value and formatting properties |
createMathematicalText()
public abstract IMathematicalText createMathematicalText()
Create empty mathematical text element
Returns: IMathematicalText - new Mathematical Text
createMathematicalText(char mathSymbol)
public abstract IMathematicalText createMathematicalText(char mathSymbol)
Create mathematical text element with the specified value
Parameters:
| Parameter | Type | Description |
|---|---|---|
| mathSymbol | char | single symbol to use as text value |
Returns: IMathematicalText - new Mathematical Text
createMathematicalText(String mathText)
public abstract IMathematicalText createMathematicalText(String mathText)
Create empty mathematical text element with the specified value
Parameters:
| Parameter | Type | Description |
|---|---|---|
| mathText | java.lang.String | text value |
Returns: IMathematicalText - new Mathematical Text
createMathematicalText(String mathText, IPortionFormat portionFormat)
public abstract IMathematicalText createMathematicalText(String mathText, IPortionFormat portionFormat)
Create empty mathematical text element with the specified value and formatting properties
Parameters:
| Parameter | Type | Description |
|---|---|---|
| mathText | java.lang.String | text value |
| portionFormat | IPortionFormat | text format settings |
Returns: IMathematicalText - new Mathematical Text