Hello,
In ReactNative, there's a property called ellipsizeMode and another called numberOfLines that can be used together to achieve the desired result.
However, these properties are not available in the Mendix Text widget.
In this scenario, 2 possibilities:
if length($currentObject/Text) > $currentObject/Limit
then
substring($currentObject/Text,0, $currentObject/Limit-3) + '...'
else
$currentObject/Text