JoinBlock

IMathBlock.JoinBlock method

Соединяет другой математический блок с этим

public IMathBlock JoinBlock(IMathBlock other)
ПараметрТипОписание
otherIMathBlockСоединительный блок

Возвращаемое значение

этот математический блок после объединения

Примеры

Пример:

[C#]
IMathBlock block1 = new MathSuperscriptElement(new MathematicalText("c"), new MathematicalText("2")).Join(new MathematicalText("="));
IMathBlock block2 = new MathSuperscriptElement(new MathematicalText("a"), new MathematicalText("2")).Join(new MathematicalText("+"))
.Join(new MathSuperscriptElement(new MathematicalText("b"), new MathematicalText("2")));
IMathBlock block3 = block1.JoinBlock(block2);

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