| Top |  |  |  |  | 
| AtkRangeAtkRange — A given range or subrange, to be used with AtkValue | 
| AtkRange * | atk_range_copy () | 
| void | atk_range_free () | 
| gdouble | atk_range_get_lower_limit () | 
| gdouble | atk_range_get_upper_limit () | 
| const gchar * | atk_range_get_description () | 
| AtkRange * | atk_range_new () | 
| GType | atk_range_get_type () | 
AtkRange are used on AtkValue, in order to represent the full range of a given component (for example an slider or a range control), or to define each individual subrange this full range is splitted if available. See AtkValue documentation for further details.
AtkRange *
atk_range_copy (AtkRange *src);
Returns a new AtkRange that is a exact copy of src
Since: 2.12
gdouble
atk_range_get_lower_limit (AtkRange *range);
Returns the lower limit of range
Since: 2.12
gdouble
atk_range_get_upper_limit (AtkRange *range);
Returns the upper limit of range
Since: 2.12
const gchar *
atk_range_get_description (AtkRange *range);
Returns the human readable description of range
Since: 2.12
AtkRange * atk_range_new (gdouble lower_limit,gdouble upper_limit,const gchar *description);
Creates a new AtkRange.
| lower_limit | inferior limit for this range | |
| upper_limit | superior limit for this range | |
| description | human readable description of this range. | 
Since: 2.12