Kanzi  3.9.9
Kanzi Engine Java API
TextBoxConceptEnums.EditMode Enum Reference

The edit modes. More...

Inheritance diagram for TextBoxConceptEnums.EditMode:
[legend]

Public Member Functions

 EditMode (int value)
 Constructs a EditMode of an integer value. More...
 
 EditMode (EditMode enum_)
 Constructs a copy of a EditMode object. More...
 
int getValue ()
 Returns the integer value of the enumeration constant. More...
 
final int swigValue ()
 Returns the integer value of the enumeration constant. More...
 

Static Public Member Functions

static EditMode swigToEnum (int swigValue)
 Converts an integer value to the matching enumeration constant. More...
 
static EditMode toEnum (int value)
 Converts an integer value to the matching enumeration constant. More...
 

Public Attributes

 Automatic =(0)
 A Text Box node enters the editing state when the node gets the focus, and leaves the editing state
when the node loses the focus.
 
 Triggered =(1)
 A Text Box enters the editing state on a trigger, and remains in this state until another trigger
makes the node leave the editing state. More...
 

Detailed Description

The edit modes.

Constructor & Destructor Documentation

EditMode ( int  value)

Constructs a EditMode of an integer value.

Parameters
valueInteger value to convert to enumeration constant.
EditMode ( EditMode  enum_)

Constructs a copy of a EditMode object.

Parameters
enum_EditMode to be copy constructed.

Member Function Documentation

int getValue ( )

Returns the integer value of the enumeration constant.

Returns
Integer value.

Implements Enum.

static EditMode swigToEnum ( int  swigValue)
static

Converts an integer value to the matching enumeration constant.

Used internally by SWIG generated code.

Parameters
swigValueInteger value to convert to enumeration constant.
Returns
Enumeration constant matching the integer value.
final int swigValue ( )

Returns the integer value of the enumeration constant.

Used internally by SWIG generated code.

Returns
Integer value.
static EditMode toEnum ( int  value)
static

Converts an integer value to the matching enumeration constant.

Parameters
valueInteger value to convert to enumeration constant.
Returns
Enumeration constant matching the integer value.

Member Data Documentation

Triggered =(1)

A Text Box enters the editing state on a trigger, and remains in this state until another trigger
makes the node leave the editing state.

To enter the editing state use the EnterEditingStateMessage
message or the TextBoxConceptImpl::enterEditingState() method. To leave the editing state use the
LeaveEditingStateMessage message or the TextBoxConceptImpl::leaveEditingState() method.