Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
Matrix.GetRowNames
Queries row names.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
Matrix | 10.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
MBS( "Matrix.GetRowNames"; MatrixRef ) More
Parameters
Parameter | Description | Example |
---|---|---|
MatrixRef | The matrix reference number. | $matrix |
Result
Returns list or error.
Description
Queries row names.Examples
Try the Row names:
Set Variable [ $matrix ; Value: MBS("Matrix.New"; 5; 6) ]
# name Rows
Set Variable [ $r ; Value: MBS("Matrix.SetRowName"; $matrix; 0; "First Name") ]
Set Variable [ $r ; Value: MBS("Matrix.SetRowName"; $matrix; 1; "Last Name") ]
Set Variable [ $r ; Value: MBS("Matrix.SetRowName"; $matrix; 2; "City") ]
Set Variable [ $r ; Value: MBS("Matrix.SetRowName"; $matrix; 3; "Amount") ]
# show names
Show Custom Dialog [ "Row Names" ; MBS("Matrix.GetRowNames"; $matrix) ]
# free
Set Variable [ $r ; Value: MBS("Matrix.Release"; $matrix) ]
See also
- Matrix.GetColumnNames
- Matrix.GetRow
- Matrix.GetRowName
- Matrix.New
- Matrix.Release
- Matrix.SetRow
- Matrix.SetRowName
- Matrix.SetRowNames
Blog Entries
This function checks for a license.
Created 2nd April 2020, last changed 4th August 2021