IMathParagraph

IMathParagraph interface

Mathematischer Absatz, der ein Container für mathematische Blöcke ist (IMathBlock)

public interface IMathParagraph : IMathBlockCollection

Eigenschaften

NameBeschreibung
AsIMathBlockCollection { get; }Ermöglicht das Abrufen der Basis-IMathBlockCollection interface IMathBlockCollection
Justification { get; set; }Absatzausrichtung Standardwert: CenteredAsGroup

Methoden

NameBeschreibung
WriteAsMathMl(Stream)Speichert den Inhalt davonIMathParagraph als MathML

Beispiele

Beispiel:

[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;

Siehe auch