The xtd::forms::style_sheets namespace contains various properties, states, and subcontrols that make it possible to customize the look of control.
|
enum class | border_type {
border_type::none
,
border_type::hidden
,
border_type::solid
,
border_type::inset
,
border_type::outset
,
border_type::groove
,
border_type::ridge
,
border_type::theme
,
border_type::dashed
,
border_type::dot_dash
,
border_type::dot_dot_dash
,
border_type::dotted
,
border_type::double_border
} |
| The border_type enum class specifies what kind of border to display. More...
|
|
enum class | image_type {
image_type::none
,
image_type::url
,
image_type::linear_gradient
,
image_type::radial_gradient
,
image_type::conic_gradient
} |
| The image_type enum class specifies what kind of image to display. More...
|
|
enum class | length_unit {
length_unit::centimeters
,
length_unit::millimeters
,
length_unit::inches
,
length_unit::pixels
,
length_unit::points
,
length_unit::picas
,
length_unit::element
,
length_unit::element_x_height
,
length_unit::chase
,
length_unit::root_element
,
length_unit::viewport_width
,
length_unit::viewport_height
,
length_unit::viewport_min
,
length_unit::viewport_max
,
length_unit::percent
} |
| The length_unit enum class specifies the units for xtd::forms::style_sheets::length. More...
|
|
enum class | pseudo_state {
pseudo_state::standard
,
pseudo_state::hover
,
pseudo_state::pressed
,
pseudo_state::disabled
,
pseudo_state::focused
,
pseudo_state::default_state
,
pseudo_state::unchecked
,
pseudo_state::checked
,
pseudo_state::mixed
,
pseudo_state::link
,
pseudo_state::visited
,
pseudo_state::active
} |
| The pseudo_state enum class flag specifies the pseudo state of an element. More...
|
|
enum class | text_decoration {
text_decoration::none
,
text_decoration::overline
,
text_decoration::line_through
,
text_decoration::underline
} |
| The xtd::forms::style_sheets::text_decoration enum class is used to set or remove decorations from text. More...
|
|
enum class | text_transformation {
text_transformation::none
,
text_transformation::lowercase
,
text_transformation::uppercase
,
text_transformation::capitalize
} |
| The xtd::forms::style_sheets::text_transformation enum class is used to specify uppercase and lowercase letters in a text. More...
|
|
enum class | white_space {
white_space::normal
,
white_space::no_wrap
,
white_space::pre
,
white_space::pre_line
,
white_space::pre_wrap
} |
| The white_space enum class specifies how white-space inside an element is handled. More...
|
|