UseEllipsis DataWindow object property

If a column with the Edit or EditMask edit style contains character data that is too long for the display column in the DataWindow, the data is truncated. You can choose to display an ellipsis at the end of the truncated data. To do so, select the Use Ellipsis check box on the Format page in the Properties view or specify the UseEllipsis DataWindow object property in a script:

dw1.Object.col1.Edit.UseEllipsis = Yes
dw1.Modify("col1.Edit.UseEllipsis=Yes")

dw1.Object.col1.EditMask.UseEllipsis = Yes
dw1.Modify("col1.EditMask.UseEllipsis=Yes")

For displayed text, if the end of the string does not fit in the rectangle, it is truncated and the ellipsis is displayed. The ellipsis does not display when the column has focus.

The property is ignored if you:

The UseEllipsis DataWindow object property is not supported in Web Forms applications.