Kanzi  3.9.8
Kanzi Engine Java API
TextBoxConceptEnums.EditMode Enum Reference

The edit modes. More...

Inheritance diagram for TextBoxConceptEnums.EditMode:
[legend]

Public Member Functions

 EditMode (int mValue)
 
 EditMode (EditMode enum_)
 
int getValue ()
 Returns the integer value of the enumeration constant. More...
 
final int swigValue ()
 

Static Public Member Functions

static EditMode swigToEnum (int swigValue)
 
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.

Member Function Documentation

int getValue ( )

Returns the integer value of the enumeration constant.

Returns
Integer value.

Implements Enum.

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.