IMathBlockFactory
public interface IMathBlockFactory
Allows to create a math block
For COM comparibility
Methods
Method | Description |
---|---|
createMathBlock() | Create a math block |
createMathBlock(IMathElement mathElement) | Create a math block and place the element in it |
createMathBlock(IMathElementCollection mathElements) | Create a math block and place elements in it |
createMathBlock()
public abstract IMathBlock createMathBlock()
Create a math block
Returns: IMathBlock - new math block
createMathBlock(IMathElement mathElement)
public abstract IMathBlock createMathBlock(IMathElement mathElement)
Create a math block and place the element in it
Parameters:
Parameter | Type | Description |
---|---|---|
mathElement | IMathElement | A math element |
Returns: IMathBlock - new math block
createMathBlock(IMathElementCollection mathElements)
public abstract IMathBlock createMathBlock(IMathElementCollection mathElements)
Create a math block and place elements in it
Parameters:
Parameter | Type | Description |
---|---|---|
mathElements | IMathElementCollection | math elements |
Returns: IMathBlock - new math block