ReplaceTabWithSpace

Description

Whether tab characters embedded in the data for a DataWindow display as square boxes when the row is not the current row.

Applies to

DataWindows

Syntax

PowerBuilder dot notation:

dw_control.Object.DataWindow.ReplaceTabWithSpace

Describe and Modify argument:

"DataWindow.ReplaceTabWithSpace { = value }"

Parameter

Description

value

Whether tab characters embedded in the data for a DataWindow are replaced with spaces.

Values are:

  • Yes – Replace each tab character with four spaces.

  • No – (Default) Do not replace tab characters.

Examples

Example 1

string str

str = dw1.Object.DataWindow.ReplaceTabWithSpace

Example 2

dw1.Object.DataWindow.ReplaceTabWithSpace="Yes"

Example 3

str = dw1.Describe("DataWindow.ReplaceTabWithSpace")

Example 4

dw1.Modify("DataWindow.ReplaceTabWithSpace=Yes")