Bandname.Text
property (DataWindow object)
Description
(RichText presentation style only) The rich text content of the
specified band as an ASCII string.
Applies to
DataWindows in the RichText presentation style
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.bandname.Text |
Describe and Modify argument:
|
1 |
"DataWindow.bandname.Text { = rtfstring }" |
|
Parameter |
Description |
|---|---|
|
bandname |
The identifier of a band in the DataWindow object
|
|
rtfstring |
A string whose value is the rich text content of Text assigned to the header When you assign text using the Modify method or |
Usage
In the painter
Set the value by editing the content of each band in the painter
workspace.
Examples
|
1 2 |
ls_footertext = dw1.Object.DataWindow.Footer.Text ls_data = dw1.Describe("DataWindow.Detail.Text") |