Equinox Online Help - Language Reference - A to Z

Home

NameFromIndex

Applies to
SyntaxNameFromIndex(IndexItem)
Action[Function] Returns a string name for an index.
ScopeUsable anywhere.
Notes

This function returns an index name from an index variable passed via the IndexItem parameter. The string returns the name of the index assigned within Equinox.

CategoryIndexes
See Also BlankIndex, CopyIndex, CurrentIndex, GroupSetIndex, IndexFromName, IndexLastUsed, IsDuplicate, KeyValues, MakeKey, MarkIndex, ModifyIndex
Example

The following example returns the name of an index which is appended to a combo workarea, so that a user can choose an index via a form.

index Ind
string IndName

IndName = NameFromIndex(Ind)
ListAppend cSelect, IndName