MathBlock
Contenido
[
Ocultar
]MathBlock()
Inicializa una nueva instancia de la clase MathBlock.
public MathBlock()
Ejemplos
Ejemplo:
[C#]
MathBlock mathBlock = new MathBlock();
Ver también
- class MathBlock
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
MathBlock(IMathElement)
Crea un nuevo bloque matemático y coloca el elemento especificado en él
public MathBlock(IMathElement mathElement)
Parámetro | Escribe | Descripción |
---|---|---|
mathElement | IMathElement | El elemento matemático a poner en el bloque. |
Ejemplos
Ejemplo:
[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));
Ver también
- interface IMathElement
- class MathBlock
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides
MathBlock(IEnumerable<IMathElement>)
Crea un nuevo bloque matemático y coloca elementos específicos en él
public MathBlock(IEnumerable<IMathElement> mathElements)
Parámetro | Escribe | Descripción |
---|---|---|
mathElements | IEnumerable`1 | Elementos matemáticos para poner en el bloque. |
Ejemplos
Ejemplo:
[C#]
var elems = new IMathElement[2] { new MathematicalText("item1"), new MathematicalText("item2") };
MathBlock mathBlock = new MathBlock(elems);
Ver también
- interface IMathElement
- class MathBlock
- espacio de nombres Aspose.Slides.MathText
- asamblea Aspose.Slides