Delimit()

IMathBlock::Delimit(char16_t) method

Delimits all child elements with separator character (without the brackets)

virtual System::SharedPtr<IMathDelimiter> Aspose::Slides::MathText::IMathBlock::Delimit(char16_t separatorCharacter)=0

Arguments

ParameterTypeDescription
separatorCharacterchar16_tCharacter used as a separator

Return Value

Instance of IMathDelimiter element

Remarks

Example:

auto mathBlock = System::MakeObject<MathematicalText>(u"x")->Join(u"y");
auto delimiterElement = mathBlock->Delimit(u'|');

See Also