The delimiter to represent line breaks in cell text.
Usage
Set_Property(OLECtrlEntID, "OLE.MultilineDelim", Text)
Values
Text can contain anything.
Default: "@TM"
Remarks
The MultilineDelim property allows the developer to establish a character to represent line breaks in text for multilined cells or header cells. By default, the Text-Mark (@TM) is the line break delimiter, but any character can be the delimiter.
* Make the semi-colon the delimiter, but change it back to text marks when done Set_Property(@Window:".OLE_EDITTABLE", "OLE.MultilineDelim", ";") Set_Property(@Window:".OLE_EDITTABLE", "OLE.CellText[1; 1]", "Line 1;Line 2") Set_Property(@Window:".OLE_EDITTABLE", "OLE.MultilineDelim", @TM)