You mean properties in that, for example, C # or PHP defines them as shells for accessor / mutator methods - something like this (in C #)?
class TimePeriod
{
private double seconds;
public double Hours
{
get { return seconds / 3600; }
set { seconds = value * 3600; }
}
}
EDIT: designated by Hugh Brackett , this can be done using an undocumented keyword INDIRECT.
() - . Powerbuilder :

( :
global type uo_timeperiod from nonvisualobject
end type
global uo_timeperiod uo_timeperiod
type variables
private double id_seconds
end variables
forward prototypes
public function double of_get_hours ()
public subroutine of_set_hours (double ad_seconds)
end prototypes
public function double of_get_hours ();
return id_seconds / 3600
end function
public subroutine of_set_hours (double ad_seconds);
id_seconds = ad_seconds * 3600
end subroutine
)