set_NoBreak()

MathBox::set_NoBreak(bool) method

No break This property specifies the "unbreakable" property on the object box. When true, no line breaks can occur within the box. This can be important for operator emulators that consist of more than one binary operator. When this element is not specified, breaks can occur inside box. Default: true

void Aspose::Slides::MathText::MathBox::set_NoBreak(bool value) override

Remarks

Example:

auto box = System::MakeObject<MathBox>(System::MakeObject<MathematicalText>(u"*****"));
box->set_NoBreak(false);

See Also