IMathParagraph

IMathParagraph interface

Paragraphe mathématique qui est un conteneur pour les blocs mathématiques (IMathBlock)

public interface IMathParagraph : IMathBlockCollection

Propriétés

NomLa description
AsIMathBlockCollection { get; }Permet d’obtenir l’interface IMathBlockCollection de base IMathBlockCollection
Justification { get; set; }Justification du paragraphe Valeur par défaut : CenteredAsGroup

Méthodes

NomLa description
WriteAsMathMl(Stream)Enregistre le contenu de ceIMathParagraph comme MathML

Exemples

Exemple :

[C#]
IAutoShape shape = slide.Shapes.AddMathShape(x, y, width, height);
IMathParagraph mathParagraph = (shape.TextFrame.Paragraphs[0].Portions[0] as MathPortion).MathParagraph;
mathParagraph.Justification = MathJustification.LeftJustified;

Voir également