BBjInputE::selectAll

Description

This method selects all of the BBjInputE 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 ' BBjInputE::selectAll

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(100,100,350,150,"selectAll",$00090003$)
window!.setCallback(window!.ON_CLOSE,"eoj")
button! = window!.addToolButton(1,25,25,300,25,"selectAll",$$)
button!.setCallback(button!.ON_TOOL_BUTTON_PUSH,"selectAll")
text$ = "The quick brown fox jumps over the lazy dog."
inpute! = window!.addInputE(101,25,75,300,25,$$,255,"",text$)
process_events

eoj:
release

selectAll:
    inpute!.selectAll()
return

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

BBjInputE

Select All - BBj INPUTE SENDMSG() Function 38

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