RadioButtons.property
property (DataWindow object)
Description
Properties that control the appearance and behavior of a column
with the RadioButton edit style.
Applies to
Column controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.columnname.RadioButtons.property |
Describe and Modify argument:
|
1 |
"columnname.RadioButtons.property { = value }" |
|
Parameter |
Description |
|---|---|
|
columnname |
The name of the column that has the RadioButton |
|
property |
A property for the RadioButton column. Properties |
|
value |
The value to be assigned to the property. For |
|
Property for RadioButtons |
Value |
|---|---|
|
3D or ThreeD |
Whether the radio buttons are 3D. Values Yes — Make the buttons 3D. No — Painter: 3D Look When using dot notation, use the term ThreeD |
|
Columns |
An integer constant specifying the number of Painter: Columns Across |
|
LeftText |
Whether the text labels for the radio buttons are Values are: Yes — The No — The Painter: |
|
Scale |
Whether the circle is scaled to the size of the Values Yes — Scale the circles. No — Do Painter: Scale Circles |
Usage
In the painter
Select the control and set the value in the Properties view, Edit
tab when Style Type is RadioButtons.
Examples
|
1 2 3 4 5 6 7 8 |
setting = dw1.Describe("empg.RadioButtons.LeftText") dw1.Modify("emp_gender.RadioButtons.LeftText=no") dw1.Modify("emp_gender.RadioButtons.3D=Yes") dw1.Modify("emp_gender.RadioButtons.Columns=2") string setting setting = & dw1.Object.emp_gender.RadioButtons.LeftText dw1.Object.emp_gender.RadioButtons.LeftText = "no" |