RunBase.showClearButton Method [AX 2012]

Determines whether to add a Clear button to the dialog box. If you change the return value to true it will add the button.

Syntax

protected boolean showClearButton()

Run On

Called

Return Value

Type: boolean
false by default.

Remarks

If you click this button, it will clear the parameters that are specified in the dialogClear method.

Examples

protected boolean showClearButton() 
{ 
    return true; 
}

See Also

RunBase Class

RunBase.showDefaultButton Method