editable property
bool
get
editable
Gets or sets whether or not this TextBlock allows in-place editing of the #text string by the user with the help of the TextEditingTool. The default is false.
See also Part#textEditable.
Implementation
_i2.bool get editable => _i4.getProperty(
this,
'editable',
);
set
editable
(bool value)
Implementation
set editable(_i2.bool value) {
_i4.setProperty(
this,
'editable',
value,
);
}