Join
Contenu
[
Cacher
]Join(IMathElement)
Joint un élément mathématique et forme un bloc mathématique
public virtual IMathBlock Join(IMathElement mathElement)
Paramètre | Taper | La description |
---|---|---|
mathElement | IMathElement | L’élément à joindre |
Return_Value
Un nouveau 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 également
- interface IMathBlock
- interface IMathElement
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides
Join(string)
Joint un texte mathématique et forme un bloc mathématique
public virtual IMathBlock Join(string mathText)
Paramètre | Taper | La description |
---|---|---|
mathText | String | Texte mathématique à joindre |
Return_Value
Un nouveau IMathBlock contenant cette instance et l’argument spécifié
Exemples
Exemple :
[C#]
IMathElement element = new MathematicalText("x");
IMathBlock block = element.Join("+y");
Voir également
- interface IMathBlock
- class MathElementBase
- espace de noms Aspose.Slides.MathText
- Assemblée Aspose.Slides