Justification

MathParagraph.Justification property

Paragraph Justification Default value: CenteredAsGroup

public MathJustification Justification { get; set; }

Examples

Example:

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

See Also