queryStr Function

Retrieves a string that represents an existing query.


str queryStr(class _query)

Parameter

Description

_query

The query to return the name of.

The name of the query.

If the query does not exist, a syntax error is thrown.

static void queryStrExample(Args _arg)
{
    // Prints the string AssetTable.
    print queryStr(AssetTable);
 
    // Results in compiler error saying that operand is not an element.
    print queryStr(AssetTable);
    pause;
}

Community Additions

ADD
Show: