Go to: Synopsis. Return value. MEL examples.

Synopsis

string CBG(string $callProc, string $parent, string $whichCallback)

Generate a string for control callbacks in the form: callbackProc "parent" "whichCallback"

Return value

None

Arguments

Variable Name Variable Type Description
$callProcstringName of procedure to be called
$parentstringParent widget of control where callback will live
$whichCallstringName of callback

MEL examples

  string $cb = CBG("CallMe", "MyWidget", "AfterIHappen");
  // Result : CallMeCallback "MyWidget" "AfterIHappen" //