GetColumnAlignment()

MathMatrix::GetColumnAlignment(int32_t) method

Get the horizontal alignment of the specified column

MathHorizontalAlignment Aspose::Slides::MathText::MathMatrix::GetColumnAlignment(int32_t columnIndex) override

Arguments

ParameterTypeDescription
columnIndexint32_tZero-based column index

Return Value

Horizontal Alignment of specified column

Remarks

Example:

auto matrix = System::MakeObject<MathMatrix>(2, 3);
auto alignment = matrix->GetColumnAlignment(0);

See Also