RunBase.showDefaultButton Method [AX 2012]

Determines whether a Default button is to be added to the dialog box. If you change the return value to true, it will add the button.

Syntax

public boolean showDefaultButton()

Run On

Called

Return Value

Type: boolean
false by default.

Remarks

If you click this button it will reset the parameters to the default that is specified in the initParmDefault method.

Examples

public boolean showDefaultButton() 
{ 
    return true; 
}

See Also

RunBase Class

RunBase.showClearButton Method