It seems that you are experiencing an issue where characters are cut off at the end of a text box when using the Add Text feature. This could be due to several factors, such as the properties set on the text box or the constraints of the container it resides in.
To address this issue, consider the following:
- Check Text Box Properties: Ensure that the
TextWrappingproperty is set toWrapto allow text to wrap within the text box. This can help prevent text from being cut off if it exceeds the width of the box. - Set Appropriate Height: If the text box is set to grow vertically, make sure that the
HeightorMaxHeightproperties are appropriately defined to prevent it from exceeding the visible area. - Test in Different Containers: If the text box is placed within a parent container, ensure that the container does not have constraints that limit the visibility of the text box.
- Use Multi-Line Input: If you need to allow for multi-line input, ensure that the
AcceptsReturnproperty is set totrue.
If the issue persists after checking these settings, it may be helpful to review the specific implementation or any additional styling that could be affecting the text box's behavior.