Border
| Category | refcounted |
| Type | hime_border_t |
| Inherits | Object |
Border of View.
Constructors
hime_border_t hime_border_create_solid(color, thickness)
Create a border that is a simple line of the specified color and thickness.
Parameters
hime_color_tcolorintthickness
Return
hime_border_thime_border_t hime_border_create_themed_solid(color_id, thickness)
Same with CreateSolid except it uses the color specified by the views's ColorProvider and the given color identifier.
Parameters
hime_color_id_tcolor_idintthickness
Return
hime_border_thime_border_t hime_border_create_rounded_rect(color, thickness, radius)
Create a border that is a rounded rectangle of the specified color and thickness.
Parameters
hime_color_tcolorintthicknessfloatradius
Return
hime_border_thime_border_t hime_border_create_themed_rounded_rect(color_id, thickness, radius)
Same with CreateThemedRoundedRect except it uses the color specified by the views's ColorProvider and the given color identifier.
Parameters
hime_color_id_tcolor_idintthicknessfloatradius
Return
hime_border_t