CwGetName

Syntax:

sName = CwGetName(hEffect)

        sName           (string) The name of the requested object.

        hEffect         (handle) Handle to an effect.

Description:

This function returns the name of a given effect. Only groups and effects have names. The name may be any valid string.

Example:

/* Upcase the names of every object. */

o = CwFindFirstObject( CwGetCurrentView() )
do while CwIsHandleValid(o)
        n = CwGetName(o)
        call CwSetName o, translate(n)
        o = CwFindNextObject( o )
        end

Remarks:

This is equivalent to CwGetProperty on the Name property.

Functions by NAME

Index

Functions by PURPOSE