RunBase::description Method [AX 2012]

Gets the description of the class.

Syntax

client server public static ClassDescription description()

Run On

ClientOrServer

Return Value

Type: ClassDescription Extended Data Type
The description of the class.

Remarks

This method should be in every class. It is used by the batch system to display which class is being used.

Examples

client server static ClassDescription description() 
{ 
    return "Description of my runbase"; 
}

See Also

RunBase Class

RunBase.caption Method