idx_get()

MathMatrix::idx_get(int32_t, int32_t) method

Element of matrix

System::SharedPtr<IMathElement> Aspose::Slides::MathText::MathMatrix::idx_get(int32_t row, int32_t column) override

Arguments

ParameterTypeDescription
rowint32_tThe zero-based index of the row to get item
columnint32_tThe zero-based index of the column to get item

Return Value

Remarks

Example:

auto matrix = System::MakeObject<MathMatrix>(2, 3);
matrix->idx_set(0, 0, System::MakeObject<MathematicalText>(u"item.1.1"));

See Also