GetColumnAlignment()

IMathMatrix::GetColumnAlignment(int32_t) method

Get the horizontal alignment of the specified column

virtual MathHorizontalAlignment Aspose::Slides::MathText::IMathMatrix::GetColumnAlignment(int32_t columnIndex)=0

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