Join
Contenu
[
Cacher
]Join(IMathElement)
Joins un élément mathématique et forme un bloc mathématique
public virtual IMathBlock Join(IMathElement mathElement)
Paramètre | Type | Description |
---|---|---|
mathElement | IMathElement | L’élément à joindre |
Valeur de retour
Un nouvel IMathBlock contenant cette instance et l’argument spécifié
Exemples
Exemple:
[C#]
IMathElement element1 = new MathematicalText("x");
IMathElement element2 = new MathematicalText("y");
IMathBlock block = element1.Join(element2);
Voir aussi
- interface IMathBlock
- interface IMathElement
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides
Join(string)
Joins un texte mathématique et forme un bloc mathématique
public virtual IMathBlock Join(string mathText)
Paramètre | Type | Description |
---|---|---|
mathText | String | Texte mathématique à joindre |
Valeur de retour
Un nouvel IMathBlock contenant cette instance et l’argument spécifié
Exemples
Exemple:
[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");
Voir aussi
- interface IMathBlock
- class MathElementBase
- namespace Aspose.Slides.MathText
- assembly Aspose.Slides