Sets the given property for a radio button that is part of the given radio group specified by the item_name or item_id.
SET_RADIO_BUTTON_PROPERTY
(item_id ITEM,
button_name VARCHAR2,
property NUMBER,
value NUMBER);
SET_RADIO_BUTTON_PROPERTY
(item_name VARCHAR2,
button_name VARCHAR2,
property NUMBER,
value NUMBER);
SET_RADIO_BUTTON_PROPERTY
(item_id ITEM,
button_name VARCHAR2,
property NUMBER,
value VARCHAR2);
SET_RADIO_BUTTON_PROPERTY
(item_name VARCHAR2,
button_name VARCHAR2,
property NUMBER,
value VARCHAR2);
SET_RADIO_BUTTON_PROPERTY
(item_id ITEM,
button_name VARCHAR2,
property NUMBER,
x NUMBER,
y NUMBER);
SET_RADIO_BUTTON_PROPERTY
(item_name VARCHAR2,
button_name VARCHAR2,
property NUMBER,
x NUMBER,
y NUMBER);
Built-in Type unrestricted procedure
Enter Query Mode yes
BACKGROUND_COLOR The color of the object's background region.
ENABLED Specify PROPERTY_TRUE constant if you want to enable the radio button. Specify PROPERTY_FALSE if you want to disable the radio button from operator control.
FILL_PATTERN The pattern to be used for the object's fill region. Patterns are rendered in the two colors specified by Background Color and Foreground Color.
FONT_NAME The font family, or typeface, that should be used for text in the object. The list of fonts available is system-dependent.
FONT_SIZE The size of the font, specified in points.
FONT_SPACING The width of the font, that is, the amount of space between characters (kerning).
FONT_STYLE The style of the font.
FONT_WEIGHT The weight of the font.
FOREGROUND_COLOR The color of the object's foreground region. For items, the Foreground Color attribute defines the color of text displayed in the item.
HEIGHT Specify the height of the given radio button. Specify the value as a number.
ITEM_SIZE Sets the width and height of the given radio button. Use the syntax that shows an x,y coordinate pair and specify the values as numbers.
LABEL Specify the actual string label for that radio button.
POSITION Sets the position of the given radio button. Use the syntax that shows an x,y coordinate pair and specify the values as numbers.
PROMPT_FILL_PATTERN The pattern to be used for the object's fill region. Patterns are rendered in the two colors specified by Background Color and Foreground Color.
PROMPT_FONT_NAME The font family, or typeface, that should be used for text in the object. The list of fonts available is system-dependent.
PROMPT_FONT_SIZE The size of the font, specified in points.
PROMPT_FONT_SPACING The width of the font, that is, the amount of space between characters (kerning).
PROMPT_FONT_STYLE The style of the font.
PROMPT_FONT_WEIGHT The weight of the font.
PROMPT_FOREGROUND_COLOR
The color of the object's foreground region. For items, the Foreground Color
attribute defines the color of text displayed in the item.
VISIBLE Specify PROPERTY_TRUE constant if you want the radio button to be displayed. Specify PROPERTY_FALSE constant if you want the radio button to be hidden.
VISUAL_ATTRIBUTE Specifies a valid named visual attribute that exists in the current form that you want Oracle Forms to apply to the radio button.
WIDTH Specify the width of the given radio button. Specify the value as a number.
X_POS Specify the x-coordinate for the radio button. Specify the value as a number.
Y_POS Specify the y-coordinate for the radio button. Specify the value as a number.
value Specifies a NUMBER or a VARCHAR2 value. The data type of the value you enter is determined by the data type of the property you specified. If you enter a VARCHAR2 value, you must enclose it in quotes, unless you reference a text item or variable.
PROPERTY_TRUE Specifies that the property is to be set to the TRUE state.
PROPERTY_FALSE Specifies that the property is to be set to the FALSE state.
/*
** Built-in: SET_RADIO_BUTTON_PROPERTY
** Example: Set a particular radio button to disabled.
*/
BEGIN
Set_Radio_Button_Property('MYBLOCK.FLIGHT_STATUS',
'GROUNDED',ENABLED,PROPERTY_FALSE);
END;