2 * @defgroup Separator Separator
4 * @brief Separator is a very thin object used to separate other objects.
6 * A separator can be vertical or horizontal.
8 * @ref tutorial_separator is a good example of how to use a separator.
12 * @brief Add a separator object to @p parent
14 * @param parent The parent object
16 * @return The separator object, or NULL upon failure
19 elm_separator_add(Evas_Object *parent)
22 * @brief Set the horizontal mode of a separator object
24 * @param obj The separator object
25 * @param horizontal If true, the separator is horizontal
27 EAPI void elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) EINA_ARG_NONNULL(1);
29 * @brief Get the horizontal mode of a separator object
31 * @param obj The separator object
32 * @return If true, the separator is horizontal
34 * @see elm_separator_horizontal_set()
36 EAPI Eina_Bool elm_separator_horizontal_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);