Developer

AllowEmpty

Specifies if value from InplaceEdit can be assigned to node if is same as EmptyValue property.

property AllowEmpty: Boolean read FAllowEmpty write FAllowEmpty default True;
Internal code used for checking if value can be assigned is similar to this:

CanAssignValue := EditingNode.AllowEmpty or (InplaceEdit.Text <> EditingNode.EmptyValue);

See also