BBjInputD::selectAll

Description

This method selects all of the BBjInputD control's current contents as if the user highlighted it with the mouse or keyboard.

Syntax

Return Value

Method

void

selectAll()

Parameters

None.

Return Value

None.

BUI logoRemarks

Most browsers ignore this request if the control doesn't have focus.

Example

rem ' BBjInputD::selectAll

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(100,100,150,150,"selectAll",$00090003$)
window!.setCallback(window!.ON_CLOSE,"eoj")
button! = window!.addToolButton(1,25,25,100,25,"selectAll",$$)
button!.setCallback(button!.ON_TOOL_BUTTON_PUSH,"selectAll")
inputd! = window!.addInputD(101,25,75,100,25)
process_events

eoj:
release

selectAll:
    inputd!.selectAll()
return

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

BBjInputD

Select All - BBj INPUTD SENDMSG() Function 38

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.