"columnPlaceholderText"

This text is displayed grayed out until the user writes something in the input area of the column.

Synopsis

Shape.columnPlaceholderText(int columnb, string|langString text);

Parameters

Parameter Description
shape Name of the object
column Number of the column
text Text to be displayed.

Description

The defined text is displayed grayed out until the user writes something in the input area of the table column.

Only works if the column of the table can be edited.

Example

The first column in TABLE1 should display the placeholder text "Default Text".

main()
{
  TABLE1.columnPlaceholderText(0, "Default Text");
}

Assignment

Table