Declare Property
i have Procedure that get Value from List to Change Font Style and Font Weight ,
the problem that the Property for this not Character .
For example :
SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,'FONT_ITALIC'); => is Wrong
SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,FONT_ITALIC); => is Correct
Help:
How i can declare Property to Get Value from List and Replace it with the specific Property .
For example :
Declare
V_FONT_STYLE PROPERTY;
BEGIN
IF :LIST = 'FONT_ITALIC' THEN
V_FONT_STYLE := FONT_ITALIC;
END IF;
SET_ITEM_PROPERTY('ITEM_NAME',FONT_STYLE,V_FONT_STYLE);
END;