SetColumnAlignment()

MathMatrix::SetColumnAlignment(int32_t, MathHorizontalAlignment) method

Set the horizontal alignment of the specified column

void Aspose::Slides::MathText::MathMatrix::SetColumnAlignment(int32_t columnIndex, MathHorizontalAlignment val) override

Arguments

ParameterTypeDescription
columnIndexint32_tZero-based column index
valMathHorizontalAlignmentNew value of horizontal alignment of specified column

Remarks

Example:

auto matrix = System::MakeObject<MathMatrix>(2, 3);
matrix->SetColumnAlignment(0, MathHorizontalAlignment::Left);

See Also