MathBlock

MathBlock()

Initialise une nouvelle instance de la classe MathBlock.

public MathBlock()

Exemples

Exemple :

[C#]
MathBlock mathBlock = new MathBlock();

Voir également


MathBlock(IMathElement)

Crée un nouveau bloc mathématique et y place l’élément spécifié

public MathBlock(IMathElement mathElement)
ParamètreTaperLa description
mathElementIMathElementL’élément mathématique à mettre dans le bloc

Exemples

Exemple :

[C#]
MathBlock mathBlock = new MathBlock(new MathematicalText("x"));

Voir également


MathBlock(IEnumerable<IMathElement>)

Crée un nouveau bloc mathématique et y place les éléments spécifiés

public MathBlock(IEnumerable<IMathElement> mathElements)
ParamètreTaperLa description
mathElementsIEnumerable`1Éléments mathématiques à mettre dans le bloc

Exemples

Exemple :

[C#]
var elems = new IMathElement[2] { new MathematicalText("item1"), new MathematicalText("item2") };
MathBlock mathBlock = new MathBlock(elems);

Voir également