LlDesignerProhibitFunction

Syntax:

INT LlDesignerProhibitFunction (HLLJOB hJob, LPCTSTR pszFunction);

Task:

Hides the given function in the formula wizard. Must be called before any functions are evaluated.

Parameter:

hJob: List & Label job handle

pszFunction: Function name.

Return Value:

Error code

Hints:

If you pass NULL or an empty string, the list of functions to be hidden will be reset.

Example:

HLLJOB hJob;
hJob = LlJobOpen(0);

LlDesignerProhibitFunction(hJob, "");
LlDesignerProhibitFunction(hJob, "CStr$");
...
LlJobClose(hJob);

 

See also:

LlDefineLayout, LlDesignerProhibitAction, LlDesignerProhibitEditingObject