Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 9.5   10.0   10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2    Statistic    FMM    Blog  

Matrix.GetRowNames

Queres row names.

Component Version macOS Windows Linux Server iOS SDK
Matrix 10.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "Matrix.GetRowNames" )

Parameters

none

Result

Returns list or error.

Description

Queres 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

Blog Entries

Created 2nd April 2020, last changed 2nd November 2020


Matrix.GetRowName - Matrix.GetText

Feedback: Report problem or ask question.