BBjInputT::isEditable

Description

In BBj 24.00 and higher, this method returns whether the user can edit the contents of the BBjInputT control.

Syntax

Return Value Method
boolean isEditable()

Parameters

None.

Return Value

Returns whether the user can edit the contents of the BBjInputT control.

Remarks

By default, the BBjInputT is editable.

Example

sysgui = unt
open (sysgui)"X0"
sysgui! = bbjapi().getSysGui()
window! = sysgui!.addWindow(50,50,200,150,"BBjInputT",$00090083$)
window!.setCallback(window!.ON_CLOSE,"eoj")
inputt! = window!.addInputT(101,25,25,150,25,$0008$)
inputt!.setValue(tim)
inputt!.setEditable(0)
print "isEditable: ",inputt!.isEditable()
inputt! = window!.addInputT(102,25,75,150,25,$0008$)
inputt!.focus()
inputt!.setValue(tim)
print "isEditable: ",inputt!.isEditable()
process_events

eoj:
release

ClosedVersion History

  • BBj 24.00: BBjInputT::isEditable added.

See Also

BBjAPI

BBjSysGui

BBjControl

BBjWindow

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