BBjInputT::getInsertMode

Description

In BBj 24.00 and higher, this method returns whether the BBjInputT control is in insert mode.

Syntax

Return Value Method
boolean getInsertMode()

Parameters

None.

Return Value

Returns whether the BBjInputT control is in the insert mode.

Remarks

By default, the BBjInputT control is not in insert mode.

Example

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(50,50,200,150,"BBjInputD",$00090083$)
window!.setCallback(window!.ON_CLOSE,"eoj")
inputt! = window!.addInputT(101,25,25,150,25,$0008$)
print "Insert mode: ",inputt!.getInsertMode()
inputt! = window!.addInputT(102,25,85,150,25,$0008$)
inputt!.setInsertMode(1)
print "Insert mode: ",inputt!.getInsertMode()
process_events

eoj:
release

ClosedVersion History

  • BBj 24.00: BBjInputT::getInsertMode added.

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

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