MatrixInt::Rows Property

__declspec(property(get = GetRows, put = SetRows)) int Rows;

Defines the number of matrix Rows.

Read: int GetRows() const;
Write: void SetRows(const int Value) const;
Remarks:

Use this property to set or get the number of the calling matrix Rows. Setting the Rows does not affect the actual amount of memory allocated unless Rows*Cols is bigger than TMtxVecBase::ActualSize.

See Also: MatrixInt::Cols, MatrixInt::Size
Declared in Dew::Math::MatrixInt · Dew.Math/MtxExprInt.h · Cross-compiler