Disable the modification of a parameter.

syntaxSyntax:
FWiz.DisableParam(index)

Parameters

Parameter Description
index Row number of the parameter to be deactivated.

Return Value

If an error occurs it returns false otherwise it returns true.

Remarks

This function can only be called in response to the OnEnableParams event.

Example

  Copy codeCopy code
function OnEnableParams(tabIndex)
{
  switch (tabIndex)
  {
  case 1:
    FWiz.DisableParam(3);
    break;
  }
}

See also