wfselector
User interface for waveform selection
Calling sequence
wfselector(callback)
wfselector(callback)
Parameters
- callback:
Callback function called when the user has finished. The callback will be called with 2 parameters: status ('ok' if the user has pressed ok, 'cancel' otherwise), and wf (waveform object, as selected and configured by the user).
Callback function called when the user has finished. The callback will be called with 2 parameters: status ('ok' if the user has pressed ok, 'cancel' otherwise), and wf (waveform object, as selected and configured by the user).
Examples
function mycallback(status, wf)
// ...
endfunction
wfselector(mycallback);
function mycallback(status, wf) // ... endfunction wfselector(mycallback); |