BBjInputT::selectAll

Description

This method selects all of the BBjInputT 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.

Remarks

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

Example

rem ' selectAll
sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
sysgui!.setScale(2,2)
window! = sysgui!.addWindow(25,25,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")
inputt! = window!.addInputT(101,25,75,100,25)
inputt!.setValue(tim)
process_events
eoj:
release
selectAll:
inputt!.selectAll()
return

ClosedVersion History

  • BBj 24.00: BBjInputT::selectAll added.

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

Select All - BBj INPUTT SENDMSG() Function 38

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