IMathParagraph

IMathParagraph interface

Математический абзац, являющийся контейнером для математических блоков (IMathBlock)

public interface IMathParagraph : IMathBlockCollection

Характеристики

ИмяОписание
AsIMathBlockCollection { get; }Позволяет получить базовый интерфейс IMathBlockCollection IMathBlockCollection
Justification { get; set; }Обоснование абзаца Значение по умолчанию:CenteredAsGroup

Методы

ИмяОписание
WriteAsMathMl(Stream)Сохраняет содержимое этогоIMathParagraphкак MathML

Примеры

Пример:

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

Смотрите также