RichText.property
property (DataWindow object)
Description
Properties for the DataWindow RichText presentation style.
Applies to
DataWindows
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.RichText.property |
Describe and Modify argument:
|
1 |
"DataWindow.RichText.property { = value }" |
|
Parameter |
Description |
|---|---|
|
property |
A property for the DataWindow RichText presentation |
|
value |
A value to be assigned to the |
|
Property for RichText |
Value |
|---|---|
|
BackColor |
A long specifying the numeric value of the For more information about color, see Painter: Background |
|
ControlCharsVisible |
Specifies whether control characters (carriage
Painter: RichText Presentation group, |
|
DisplayOnly |
Specifies whether users can make changes to the
Painter: Display Only |
|
HeaderFooter |
(Read-only) Specifies whether the RichTextEdit
If a document has a header or footer and Painter: Header/Footer option. |
|
InputField BackColor |
A long specifying the default background color for Painter: |
|
InputField NamesVisible |
Specifies whether input field names are displayed
The value you specify is ignored when the Painter: RichText Presentation group, Input |
|
InputFields Visible |
Specifies whether input fields display in the
Painter: RichText Presentation group, |
|
PictureFrame (obsolete) |
(Obsolete) This property is no longer supported Specifies whether pictures
Painter: Pictures As Frame |
|
PopMenu |
Specifies whether the user has access to a pop-up
Painter: PopUp Menu |
|
ReadOnly |
Specifies whether the user can change the data and
|
|
ReturnsVisible (obsolete) |
Replaced by RichText.ControlCharsVisible |
|
RulerBar |
Specifies whether a ruler bar is visible above the
If the RichTextEdit pop-up menu is Painter: RichText Bars group, Ruler |
|
SpacesVisible |
Specifies whether spaces are visible. Values
Painter: RichText Presentation group, |
|
TabBar (obsolete) |
(Obsolete) This property is no longer supported Specifies whether a bar for
If the pop-up menu is enabled, the user Painter: RichText Bars |
|
TabsVisible |
Specifies whether tabs are visible. Values
Painter: RichText Presentation group, |
|
ToolBar |
Specifies whether a tool bar for formatting text is
If the pop-up menu is enabled, the user Painter: RichText Bars |
|
WordWrap |
Determines whether large blocks of text that do not
Painter: Word Wrap option |
Usage
In the painter
Select the DataWindow by deselecting all controls; then set the
value in the Properties view, General tab, when the presentation style
is RichText.
Examples
|
1 2 3 4 5 6 7 |
string setting setting = & dw1.Object.DataWindow.RichText.DisplayOnly dw1.Object.DataWindow.RichText.PopMenu = "yes" setting = & dw1.Describe("DataWindow.RichText.DisplayOnly") dw1.Modify("DataWindow.RichText.PopMenu = 'yes'") |